/* Nicota Wines - Pages Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: white;
    color: #333;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 2rem;
    gap: 3rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8B0000;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #8B0000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #8B0000;
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Hero Sections */
.hero, .wine-hero {
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.about-hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/about-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.hero h1, .about-hero h1, .wine-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.about-hero h1 {
    color: white;
}

.hero p, .about-hero p, .wine-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Wine Country Hero Sections */
.canadian-hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://flagcdn.com/w2560/ca.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    margin-top: 70px;
}

.french-hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://flagcdn.com/w2560/fr.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    margin-top: 70px;
}

.italian-hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://flagcdn.com/w2560/it.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    margin-top: 70px;
}

.canadian-hero h1, .french-hero h1, .italian-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: white;
}

.canadian-hero p, .french-hero p, .italian-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    background: #F8F8F8;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.filter-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.btn-search {
    padding: 0.75rem 1.5rem;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        padding: 0 1rem;
    }

    .search-input,
    .filter-select {
        width: 100%;
        min-width: unset;
    }

    .btn-search {
        width: 100%;
        justify-content: center;
    }
}

/* Content Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Cards and Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.icon {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

/* Story Content */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.story-image {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Team Section */
.team-section {
    background: #f8f8f8;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.15);
}

.profile-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.profile-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.profile-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.profile-role {
    color: #8B0000;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.profile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.profile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.profile-social a:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-3px);
}

/* Old team styles (keep for backwards compatibility) */
.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.team-role {
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background: #f8f8f8;
    padding: 5rem 2rem;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.12);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.testimonial-stars {
    color: #DAA520;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin: 1.5rem 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: #8B0000;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    background: #6B0000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #8B0000;
}

/* Footer */
/* Footer Styles (from index.html) */
.footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    width: 100%;
    padding: 0 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #CCCCCC;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DAA520;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #DAA520;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    /* Footer - 2x2 on tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 300px;
    }

    .grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .hero h1, .about-hero h1, .wine-hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }
}


/* Events Page Styles */
.events-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(139,0,0,0.15);
}

.event-image {
    height: 200px;
    background: linear-gradient(135deg, #8B0000 0%, #DAA520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    color: white;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #DAA520;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-info {
    padding: 2rem;
}

.event-date {
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 0;
}

.event-location {
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-attendees {
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-register {
    width: 100%;
    padding: 1rem;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-register:hover {
    background: #6B0000;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-card:hover {
    background: #f0f0f0;
    transform: translateX(8px);
}

.info-icon {
    font-size: 2.5rem;
    color: #8B0000;
    min-width: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.info-content p {
    color: #666;
    margin: 0;
}

.info-content a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

.form-row-full {
    grid-column: 1 / -1;
}

.form-row-full .form-group {
    margin-bottom: 1.5rem;
}

.btn-submit {
    background: #8B0000;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #6B0000;
    transform: translateY(-2px);
}

/* Mission Cards - Better Styling */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #8B0000;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139,0,0,0.15);
}

.mission-icon {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
    display: block;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 0;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Awards Section - Better Styling */
.awards-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #8B0000;
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139,0,0,0.15);
}

.award-icon {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
    display: block;
}

.award-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.award-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Trips/Tours Page Styles */
.trips-hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/tour-hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.trips-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: white;
}

.trips-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.trips-section {
    padding: 4rem 2rem;
    background: white;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 3rem;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #E5E5E5;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(139,0,0,0.15);
}

.tour-image {
    height: 200px;
    background: linear-gradient(135deg, #8B0000 0%, #DAA520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.tour-video {
    background: #000;
    padding: 0;
    height: 280px;
}

.tour-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.tour-duration {
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tour-details {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.tour-details h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 0;
}

.tour-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-details li {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-details i {
    color: #8B0000;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E5E5;
}

.tour-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B0000;
}

.btn-book {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book:hover {
    background: #6B0000;
    transform: translateY(-2px);
}

/* Nav styling for hero sections */
.hero-section {
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}


/* Events Hero Section */
.events-hero {
    background: 
        radial-gradient(circle at 10% 20%, rgba(218, 165, 32, 0.3) 0%, transparent 5%),
        radial-gradient(circle at 30% 10%, rgba(139, 0, 0, 0.4) 0%, transparent 5%),
        radial-gradient(circle at 50% 25%, rgba(218, 165, 32, 0.35) 0%, transparent 5%),
        radial-gradient(circle at 70% 15%, rgba(139, 0, 0, 0.3) 0%, transparent 5%),
        radial-gradient(circle at 90% 22%, rgba(218, 165, 32, 0.4) 0%, transparent 5%),
        linear-gradient(180deg, #1A1A1A 0%, #2A0A0A 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.events-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: white;
}

.events-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), url('../images/contact-hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: white;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}


/* Map Section */
.map-section {
    width: 100%;
    height: 500px;
    margin: 4rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-section {
        height: 350px;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    /* Footer - 2x2 grid on mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.75rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.4rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .map-section {
        height: 250px;
        margin: 1.5rem 0;
    }
}

/* Top Picks Section */
.product-slider {
    margin: 2rem 0;
}

/* Products Section - Wine Pages */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.products-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #8B0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.product-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-quick-view {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B0000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: bottom 0.3s ease;
    font-size: 0.875rem;
}

.product-image:hover .product-quick-view {
    bottom: 12px;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-vintage {
    font-size: 0.875rem;
    color: #DAA520;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2C2C2C;
    margin: 0.5rem 0;
    font-weight: 700;
}

.product-origin {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-rating {
    color: #DAA520;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B0000;
    font-weight: 700;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.wine-bottle {
    width: 100%;
    height: 100%;
}

/* Gallery Page */
.gallery-hero {
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            #8B0000 0deg,
            #1A1A1A 45deg,
            #8B0000 90deg,
            #1A1A1A 135deg,
            #8B0000 180deg,
            #1A1A1A 225deg,
            #8B0000 270deg,
            #1A1A1A 315deg,
            #8B0000 360deg
        );
    color: white;
    text-align: center;
    padding: 6rem 2rem 4rem;
    margin-top: 80px;
    position: relative;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.7) 70%);
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: white;
}

.gallery-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.gallery-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #8B0000;
    background: white;
    color: #8B0000;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B0000 0%, #DAA520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    font-size: 10rem;
}

@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .gallery-overlay {
        padding: 0.75rem 1rem;
    }

    .gallery-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .gallery-category {
        font-size: 0.75rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .product-image {
        height: 200px;
        font-size: 3rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */

.faq-hero {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.faq-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #DAA520;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category h2 i {
    font-size: 1.5rem;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #DAA520;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.faq-icon {
    color: #8B0000;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.7;
    font-size: 0.975rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #f0f0f0;
}

/* ========================================
   SHIPPING PAGE STYLES
   ======================================== */

.shipping-hero {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.shipping-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.shipping-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.shipping-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-block {
    margin-bottom: 4rem;
}

.section-block h2 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-block h2 i {
    font-size: 1.75rem;
}

.section-block > p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Delivery Cards Grid */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.delivery-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: #8B0000;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.delivery-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.delivery-card h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.delivery-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.delivery-time {
    color: #DAA520;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5;
}

.delivery-features {
    list-style: none;
    text-align: left;
}

.delivery-features li {
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.delivery-features li i {
    color: #28a745;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%);
    border-left: 4px solid #DAA520;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    color: #333;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.info-box ul li i {
    color: #8B0000;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Packaging Grid */
.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.packaging-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.packaging-item:hover {
    border-color: #DAA520;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
}

.packaging-item i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.packaging-item h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.packaging-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .section-block h2 {
        font-size: 1.6rem;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-card {
        padding: 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-hero h1,
    .shipping-hero h1 {
        font-size: 2rem;
    }

    .faq-hero p,
    .shipping-hero p {
        font-size: 1.05rem;
    }

    .faq-hero,
    .shipping-hero {
        padding: 4rem 1.5rem 3rem;
    }
}

/* Authentication Pages Styles */
.auth-container, .register-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    background: #FFFFFF;
}

.auth-sidebar, .register-sidebar {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    color: white;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-sidebar-content, .sidebar-content {
    max-width: 450px;
    margin: 0 auto;
}

.auth-logo, .sidebar-logo {
    width: 140px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: brightness(0) invert(1);
}

.auth-sidebar h2, .sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.auth-sidebar p, .sidebar-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: white;
}

.auth-features, .sidebar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-feature, .sidebar-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.3rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.auth-feature i, .sidebar-features i {
    font-size: 1.3rem;
    color: #DAA520;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.auth-form-section, .register-form-section {
    background: #FFFFFF;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.form-container {
    width: 100%;
    max-width: 450px;
}

.auth-header, .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: white;
}

.auth-header h2, .form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.auth-header p, .form-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-header a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}

.form-header a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-label {
    display: block;
    color: #2C2C2C;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-label i {
    color: #8B0000;
    margin-right: 0.4rem;
    font-size: 0.85rem;
}

.form-input-wrapper, .input-wrapper {
    position: relative;
    width: 100%;
}

.form-input-icon, .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
}

.form-input, .form-control {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    border: 1.5px solid #D4D4D4;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    background: white;
}

.form-input:focus, .form-control:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.08);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.3rem;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #8B0000;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.form-link {
    color: #8B0000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 0, 0, 0.25);
}

.auth-register {
    text-align: center;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid #E5E5E5;
}

.auth-register p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.btn-register {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border: 2px solid #8B0000;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #8B0000;
    color: white;
}

.password-requirements {
    background: #F8F8F8;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.8rem;
    border-left: 3px solid #8B0000;
}

.password-requirements h4 {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    color: #666;
}

.password-requirements li {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-requirements li i {
    font-size: 0.7rem;
    color: #8B0000;
}

.form-checkbox-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.3rem;
}

.form-checkbox-terms input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #8B0000;
}

.form-checkbox-terms label {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
}

.form-checkbox-terms a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox-terms a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .auth-container, .register-container {
        grid-template-columns: 1fr;
    }

    .auth-sidebar, .register-sidebar {
        display: none;
    }

    .auth-form-section, .register-form-section {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .auth-form-section, .register-form-section {
        padding: 2rem 1.5rem;
    }

    .form-container {
        max-width: 100%;
    }

    .auth-header h2, .form-header h2 {
        font-size: 1.6rem;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row .form-group {
        width: 100%;
    }
    
    .form-link {
        white-space: normal;
    }
}

