/* ===========================
   Google Fonts
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

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

:root {
    /* Color Palette - INVERTED: Now using light backgrounds */
    --primary-burgundy: #51080d;
    --dark-burgundy: #2b0307;
    --light-burgundy: #75020f;
    --accent-gold: #d4af37;
    --cream: #f5f1e8;
    --black: #19171b;
    --gray-dark: #2d2d2d;
    --gray: #6b6b6b;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--cream);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

p {
    font-size: 1.125rem;
    color: var(--gray-dark);
}

.lead {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.7;
}

/* ===========================
   Layout Containers
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-burgundy);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--gray);
    font-size: 1.25rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: var(--spacing-sm) auto;
}

/* ===========================
   Navigation - WHITE INVERTED
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--primary-burgundy);
    font-weight: 500;
    font-size: 1.125rem;
    position: relative;
}

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

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

.nav-menu a:hover {
    color: var(--accent-gold);
}

.btn-book {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--primary-burgundy);
    color: var(--white) !important;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-book::after {
    display: none;
}

.btn-book:hover {
    background: var(--light-burgundy);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(81, 8, 13, 0.3);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--light-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(81, 8, 13, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-burgundy);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 3, 7, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: var(--spacing-md);
    color: var(--cream);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--spacing-lg);
}

.about-content p {
    margin-bottom: var(--spacing-md);
}

.welcome-message {
    font-family: 'Alex Brush', cursive;
    color: var(--primary-burgundy);
    margin-top: var(--spacing-md);
    text-align: left;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.welcome-tagline {
    font-size: 2.5rem;
    line-height: 1.6;
}

/* Founders Section */
.founders-section {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--accent-gold);
}

.founders-signature {
    font-family: 'Alex Brush', cursive;
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: var(--spacing-md);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 750px;
}

.founder {
    text-align: center;
}

.founder img {
    width: 225px;
    height: 225px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 10%;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 10px 30px rgba(43, 3, 7, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(43, 3, 7, 0.3);
}

.founder-name {
    font-weight: 600;
    color: var(--primary-burgundy);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ===========================
   Photo Gallery - NEW
   =========================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.gallery-tab {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gray);
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.gallery-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.gallery-tab:hover {
    color: var(--primary-burgundy);
}

.gallery-tab.active {
    color: var(--primary-burgundy);
}

.gallery-tab.active::after {
    width: 80%;
}

/* Tab Content */
.gallery-tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

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

/* ===========================
   Wine Collection - NEW
   =========================== */
.wines-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.wine-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--cream);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wine-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.wine-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: var(--spacing-md);
    background: var(--white);
    transition: transform 0.5s ease;
}

.wine-item:hover img {
    transform: scale(1.05);
}

.wine-info {
    padding: var(--spacing-md);
    background: var(--cream);
}

.wine-info h3 {
    color: var(--primary-burgundy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.wine-info p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.wine-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Wine Navigation Cards */
.wine-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.wine-nav-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 3, 7, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.wine-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(43, 3, 7, 0.2);
}

.wine-nav-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    padding: var(--spacing-md);
    background: var(--cream);
    transition: transform 0.4s ease;
}

.wine-nav-card:hover img {
    transform: scale(1.08);
}

.wine-nav-info {
    padding: var(--spacing-md);
    background: var(--white);
}

.wine-nav-info h3 {
    color: var(--primary-burgundy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.wine-nav-region {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.wine-nav-type {
    color: var(--light-burgundy);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.wine-nav-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
}

/* ===========================
   Image Modal - NEW
   =========================== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: -60px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 4rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.modal-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

/* ===========================
   Booking Modal
   =========================== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    position: relative;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.booking-modal-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-burgundy);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.booking-modal-content .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.booking-modal-content .modal-close:hover {
    color: var(--primary-burgundy);
    transform: rotate(90deg);
}

.booking-modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.booking-modal-form .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.booking-modal-form .form-group label {
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.booking-modal-form .form-group input,
.booking-modal-form .form-group select {
    padding: 0.875rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.booking-modal-form .form-group input:focus,
.booking-modal-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-burgundy);
}

.booking-modal-form .btn {
    margin-top: var(--spacing-sm);
    width: 100%;
}

.booking-success-message {
    display: none;
    text-align: center;
}

.booking-success-message.active {
    display: block;
}

.booking-success-message h3 {
    font-family: var(--font-heading);
    color: var(--primary-burgundy);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.booking-success-message p {
    color: var(--gray-dark);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.booking-success-message .btn {
    width: auto;
    padding: 0.875rem 2.5rem;
}

/* ===========================
   CTA Components
   =========================== */
.booking-cta-integrated {
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-xl);
}

.wine-newsletter-cta {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.booking-cta-integrated .cta-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(43, 3, 7, 0.15);
    text-align: center;
}

.wine-newsletter-cta .cta-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(43, 3, 7, 0.15);
    text-align: center;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

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

.booking-form .btn {
    margin-top: var(--spacing-sm);
    width: 100%;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: var(--spacing-md);
}

.form-row {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

.form-row input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--cream);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-row input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-burgundy);
}

.form-row .btn {
    white-space: nowrap;
}

/* ===========================
   Visit Section
   =========================== */
.visit-section {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.visit-info h2 {
    color: var(--primary-burgundy);
    margin-bottom: var(--spacing-md);
}

.info-block {
    margin-bottom: var(--spacing-md);
}

.info-block h3 {
    color: var(--primary-burgundy);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 6px;
}

.hours-item span:first-child {
    font-weight: 600;
    color: var(--primary-burgundy);
}

.visit-info a {
    color: var(--light-burgundy);
    text-decoration: underline;
}

.visit-info a:hover {
    color: var(--accent-gold);
}

.social-links {
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-burgundy);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
}

.social-links a:hover {
    background: var(--light-burgundy);
}

.visit-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

/* ===========================
   Footer - WHITE INVERTED
   =========================== */
.footer {
    background: var(--white);
    color: var(--gray-dark);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-dark);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-links .btn-book {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 0.5rem;
    background: var(--primary-burgundy);
    color: var(--white) !important;
    border: 2px solid transparent;
}

.footer-links .btn-book:hover {
    background: var(--light-burgundy);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(81, 8, 13, 0.3);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--light-burgundy);
    text-decoration: underline;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(81, 8, 13, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .wine-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: var(--spacing-sm);
    }

    .nav-menu a {
        font-size: 1rem;
    }

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

    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .wine-grid,
    .wine-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 3rem;
        width: 50px;
        height: 50px;
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    .modal-prev {
        left: 20px;
    }

    .modal-next {
        right: 20px;
    }

    .gallery-tab {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wine-grid,
    .wine-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .wine-item img,
    .wine-nav-card img {
        height: 220px;
    }

    .wine-nav-info h3 {
        font-size: 1.25rem;
    }

    .wine-nav-price {
        font-size: 1.5rem;
    }

    .modal-close {
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .gallery-tabs {
        gap: 0.5rem;
    }

    .gallery-tab {
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
        letter-spacing: 0.05em;
    }

    .cta-card {
        padding: var(--spacing-md);
    }

    .cta-card h2 {
        font-size: 2rem;
    }

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

    .form-row .btn {
        width: 100%;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-tagline {
        font-size: 1.75rem;
    }
}

/* ===========================
   Extra Small Devices (375px and down) - Small Phones
   =========================== */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-tagline {
        font-size: 1.5rem;
    }

    .founder img {
        width: 180px;
        height: 180px;
    }
}

/* ===========================
   Very Small Devices (320px) - iPhone SE, etc.
   =========================== */
@media (max-width: 320px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-menu a {
        font-size: 0.875rem;
    }

    .btn-book {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .founder img {
        width: 150px;
        height: 150px;
    }
}

/* ===========================
   Large Tablets / Small Laptops (992px)
   =========================== */
@media (min-width: 992px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .about-grid,
    .visit-grid {
        gap: var(--spacing-md);
    }
}

/* ===========================
   Large Desktops (1440px+)
   =========================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}
