/* ===================================
   Grand Cru Oxford - Main Stylesheet
   =================================== */

/* ===================================
   CSS Variables
   =================================== */
:root {
    --accent-color: #73222d;
    --light-gray: #c4c5d0;
    --dark-gray: #262523;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    margin-top: 0vh;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 10vh;
}

.navbar .container {
    padding: 0 20px;
    height: 100%;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
    margin: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 5px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #5a1a23;
    border-color: #5a1a23;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 56px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--accent-color), #5a1a23);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.page-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   Introduction Section
   =================================== */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.intro-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.intro-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.intro-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-card:hover .intro-card-image img {
    transform: scale(1.1);
}

.intro-card-content {
    padding: 40px;
    text-align: center;
}

.intro-card-content h3 {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.intro-card-content p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Seasonal Section
   =================================== */
.seasonal-section {
    background-color: var(--off-white);
}

.seasonal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    align-items: center;
}

.seasonal-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seasonal-text h2 {
    margin-bottom: 1.5rem;
}

.seasonal-text p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* ===================================
   Opening Hours
   =================================== */
.hours-section {
    background-color: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hours-card {
    background-color: var(--off-white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.hours-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.day {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.time {
    color: var(--accent-color);
    font-weight: 600;
}

.time.closed {
    color: var(--text-light);
}

.booking-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--off-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.booking-note p {
    margin: 0;
    color: var(--text-dark);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), #5a1a23);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* ===================================
   Menus Section
   =================================== */
.menus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-image {
    height: 300px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 40px;
}

.menu-card-title {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.menu-card-description {
    margin-bottom: 2rem;
}

/* ===================================
   Menu Preview
   =================================== */
.menu-preview-section {
    background-color: var(--off-white);
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-preview-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.menu-preview-card h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: 600;
    color: var(--text-dark);
}

.menu-item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--light-gray);
    margin: 0 10px;
    height: 0.8em;
}

.menu-item-price {
    font-weight: 600;
    color: var(--accent-color);
}

.menu-item-description {
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.menu-note {
    text-align: center;
    margin-top: 60px;
    font-style: italic;
    color: var(--text-light);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    height: 350px;
    transition: var(--transition);
    cursor: normal;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Carousel Navigation (Mobile) */
.gallery-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-nav-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.gallery-nav-btn:hover {
    background-color: #5a1a23;
    transform: scale(1.1);
}

.gallery-indicators {
    display: flex;
    gap: 10px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

/* ===================================
   Events Section
   =================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
}

.event-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.event-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 34, 45, 0.7), rgba(38, 37, 35, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.event-image-link:hover .event-image-overlay {
    opacity: 1;
}

.event-image-link:hover img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.event-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 4px;
}

.event-content {
    padding: 40px;
}

.event-title {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-price {
    font-weight: 600;
    color: var(--accent-color);
}

.event-description {
    margin-bottom: 1.5rem;
}

/* ===================================
   Private Events Section
   =================================== */
.private-events-section {
    background-color: var(--off-white);
}

.private-events-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.private-events-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.private-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-light);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    background-color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 80px;
}

.contact-form-wrapper h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.booking-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 2rem;
}

/* ===================================
   Forms
   =================================== */
.booking-form {
    background-color: var(--white);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   Contact Info
   =================================== */
.contact-info-card {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-info-item p {
    margin: 0;
}

.contact-info-item a {
    color: var(--accent-color);
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 10vh;
        flex-direction: column;
        align-items: center;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
            padding: 1rem 0;
        gap: 0;
            height: auto;
            max-height: calc(100vh - 10vh);
            overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        width: 100%;
        justify-content: center;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
    }
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
        background-attachment: scroll;
    }

    .section {
        padding: 60px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .intro-grid,
    .menus-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    /* Seasonal section centered on mobile */
    .seasonal-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .seasonal-text {
        order: 2;
    }

    .seasonal-image {
        order: 1;
    }

    /* Gallery Carousel on Mobile */
    .gallery-grid {
        display: block;
        position: relative;
        min-height: 350px;
        width: 100%;
    }

    .gallery-item {
        width: 100%;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .gallery-nav {
        display: flex;
        position: relative;
        z-index: 10;
    }

    .gallery-section .container {
        position: relative;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===================================
   Checkbox Styling
   =================================== */
.checkbox-group {
    margin-bottom: 2rem !important;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    padding: 0;
    margin: 0;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.checkbox-label input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(115, 34, 45, 0.1);
}

.checkbox-text {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}