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

:root {
    /* Fall Winery Color Palette - Warm & Inviting */
    --primary-color: #710004; /* Red from original website */
    --secondary-color: #CD853F; /* Peru/Burnt Orange */
    --accent-color: #F4A460; /* Sandy Brown */
    --dark-burgundy: #8B4513; /* Saddle Brown */
    --light-burgundy: #A0522D; /* Sienna */
    --cream: #FFF8DC; /* Cornsilk - warmer cream */
    --gold: #FFB347; /* Warm Golden Orange */
    --dark-gold: #8B0006; /* Dark Red */
    --fall-orange: #710004; /* Red */
    --fall-yellow: #FFD700; /* Gold */
    --warm-brown: #A0522D; /* Sienna */
    --light-orange: #710004; /* Red for CTAs */
    --lighter-orange: #8B0006; /* Slightly lighter red */
    --text-dark: #3E2723; /* Warm dark brown */
    --text-light: #6D4C41; /* Warm medium brown */
    --white: #FFFFFF;
    --off-white: #FFF8F0; /* Warmer off-white */
    --warm-bg: #FFFBF5; /* Very warm light background */
    --charcoal: #2C1810; /* Warm dark brown */
    --border-color: #E6D5C3; /* Warm beige border */
    --light-gray: #FAF5EF; /* Warm light gray */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 243, 224, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 235, 205, 0.2) 0%, transparent 50%);
    background-attachment: fixed;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--warm-brown);
}

h1 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 248, 240, 0.98));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(113, 0, 4, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - DESKTOP ONLY */
.hero {
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* MOBILE HERO LAYOUT */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: none;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
    }

    .hero-content {
        order: 2;
        padding: 2rem 1rem;
        margin-top: 0;
    }

    .hero-buttons {
        margin-top: 2rem;
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    z-index: 2;
    position: relative;
    transform: translateY(0.5in);
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
    color: var(--white) !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    font-family: Arial, sans-serif;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: var(--white) !important;
}

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

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}


/* Buttons - Using Red from Original Site */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(113, 0, 4, 0.25);
    position: relative;
}

.btn-primary {
    background-color: var(--light-orange);
    color: var(--white);
    border-color: var(--light-orange);
    box-shadow: 0 4px 15px rgba(113, 0, 4, 0.3);
}

.btn-primary:hover {
    background-color: var(--lighter-orange);
    border-color: var(--lighter-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 0, 4, 0.4);
    color: var(--white) !important;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--light-orange);
    border-color: var(--light-orange);
    box-shadow: 0 3px 12px rgba(113, 0, 4, 0.2);
}

.btn-secondary:hover {
    background-color: var(--light-orange);
    border-color: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 0, 4, 0.35);
    color: var(--white) !important;
}

/* Override for white text on dark backgrounds - Clear transparent buttons */
.hero .btn-primary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.hero .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.hero .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-orange);
    border-color: var(--light-orange);
    box-shadow: 0 3px 12px rgba(113, 0, 4, 0.15);
}

.btn-outline:hover {
    background-color: var(--light-orange);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 0, 4, 0.35);
    border-color: var(--light-orange);
}

/* White outline buttons for dark backgrounds - Clear transparent */
.page-header .btn-outline,
.hero .btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.page-header .btn-outline:hover,
.hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-link {
    color: var(--light-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--lighter-orange);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: var(--warm-brown);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--fall-orange));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--warm-bg) 0%, var(--off-white) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(113, 0, 4, 0.03) 35px, rgba(113, 0, 4, 0.03) 70px);
    pointer-events: none;
}

/* Features Grid */
.features-section {
    background-color: var(--warm-bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--fall-orange), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(113, 0, 4, 0.25);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-content {
    padding: 1.75rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

/* Events Preview */
.events-preview-section {
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--warm-bg) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(113, 0, 4, 0.25);
    border-color: var(--primary-color);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-content {
    padding: 1.75rem;
}

.event-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

/* Visit Section */
.visit-section {
    background-color: var(--warm-bg);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.visit-text h2 {
    font-size: 2.25rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
}

.visit-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: var(--warm-brown);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.visit-text p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.visit-buttons {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.visit-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(113, 0, 4, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid var(--border-color);
}

.visit-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(113, 0, 4, 0.3);
    border-color: var(--primary-color);
}

.visit-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    display: none;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

/* Calendar Styles - Similar to Original */
#events-calendar {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.calendar-wrapper {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.calendar-header h3 {
    margin: 0;
    color: var(--warm-brown);
    font-size: 1.5rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.calendar-nav {
    background: var(--light-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    font-weight: bold;
    line-height: 1;
    min-width: 40px;
}

.calendar-nav:hover {
    background: var(--lighter-orange);
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(113, 0, 4, 0.3);
}

.calendar-nav:active {
    transform: scale(0.95);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem;
    background: var(--warm-bg);
}

.calendar-day-name {
    text-align: center;
    font-weight: 700;
    color: var(--warm-brown);
    padding: 0.5rem 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 0.25rem;
}

.calendar-day {
    min-height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.4rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
    min-height: 50px;
}

.calendar-day:not(.empty):hover {
    background: rgba(113, 0, 4, 0.15);
    border-color: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(113, 0, 4, 0.2);
}

.calendar-day.today {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-orange) 100%);
    color: white;
    border-color: var(--primary-color);
    border-width: 2px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 184, 77, 0.4);
}

.calendar-day.today .day-number {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.calendar-day.today::before {
    content: 'Today';
    position: absolute;
    top: 2px;
    right: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1;
}

.calendar-day.has-events {
    border-color: var(--primary-color);
    border-width: 2px;
    background: linear-gradient(to bottom, white 0%, rgba(113, 0, 4, 0.05) 100%);
}

.calendar-day.has-events:hover {
    background: linear-gradient(to bottom, rgba(113, 0, 4, 0.2) 0%, rgba(113, 0, 4, 0.1) 100%);
    border-color: var(--light-orange);
}

.calendar-day.has-events::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: var(--light-orange);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.calendar-day.selected {
    background: var(--light-orange) !important;
    color: white !important;
    border-color: var(--lighter-orange) !important;
    box-shadow: 0 3px 12px rgba(113, 0, 4, 0.4);
}

.calendar-day.selected .day-number {
    color: white;
    font-weight: 700;
}

.event-indicator {
    display: none;
}

.day-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--warm-brown);
}

.calendar-events-list {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.calendar-events-list h4 {
    color: var(--warm-brown);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: center;
}

.calendar-event-item {
    padding: 0.9rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--off-white) 0%, white 100%);
    border-radius: 6px;
    border-left: 4px solid var(--light-orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.calendar-event-item:hover {
    background: linear-gradient(to right, rgba(113, 0, 4, 0.1) 0%, rgba(113, 0, 4, 0.05) 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(113, 0, 4, 0.2);
    border-left-color: var(--lighter-orange);
}

.calendar-event-item strong {
    color: var(--warm-brown);
    font-weight: 700;
    font-size: 1.05rem;
    margin-right: 1rem;
}

.event-time {
    color: var(--light-orange);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: rgba(113, 0, 4, 0.1);
    border-radius: 15px;
}

/* Calendar Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.day-events-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 1rem;
}

.day-events-modal > div {
    animation: slideUp 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

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

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


    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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


    .btn {
        width: 100%;
        text-align: center;
    }

    .wine-category-nav {
        padding: 1.5rem 1rem !important;
        gap: 0.75rem !important;
    }

    .wine-nav-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Page Specific Styles */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0 6rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Fall Banner Styles */
.fall-banner {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #CD853F 50%, #FF8C00 75%, #FFA500 100%);
    background-size: 200% 200%;
    animation: fallGradient 8s ease infinite;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

@keyframes fallGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fall-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    pointer-events: none;
}

.fall-banner .container {
    position: relative;
    z-index: 2;
}

.fall-banner-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.fall-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.fall-banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.98;
}

.fall-banner-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.fall-banner .btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fall-banner .btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.fall-banner .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
    color: var(--white);
}

.page-header p {
    font-size: 1.25rem;
    font-weight: 400;
    font-family: Arial, sans-serif;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
    opacity: 0.95;
    color: var(--white);
}

.page-content {
    padding: 3rem 0;
    background-color: var(--warm-bg);
}

/* Beer Cards */
.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.beer-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
}

.beer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(113, 0, 4, 0.25);
    border-color: var(--primary-color);
}

.beer-card h3 {
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.35rem;
}

.beer-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
    margin-bottom: 0.5rem;
}

/* Wine Cards - Premium Design */
.wine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .wine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .wine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.wine-card {
    background: linear-gradient(145deg, #ffffff 0%, #faf9f7 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(113, 0, 4, 0.12);
    position: relative;
    cursor: pointer;
}

.wine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(113, 0, 4, 0) 0%,
        rgba(113, 0, 4, 0.3) 50%,
        rgba(113, 0, 4, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.wine-card:hover::before {
    opacity: 1;
}

.wine-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.wine-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.wine-card-link:hover .wine-card {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(113, 0, 4, 0.25);
}

.wine-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(113, 0, 4, 0.25);
}

.wine-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #fafafa 0%, #ffffff 50%, #f8f8f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wine-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(113, 0, 4, 0.03) 0%,
        transparent 70%);
    pointer-events: none;
}

.wine-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.wine-card:hover .wine-image img {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.wine-content {
    padding: 2.5rem;
    background: linear-gradient(to bottom, #ffffff 0%, #faf9f7 100%);
}

.wine-content h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* Wine Category Navigation Buttons - Premium */
.wine-nav-btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #faf9f7 100%);
    color: #2c1810;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(113, 0, 4, 0.15);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.wine-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(113, 0, 4, 0.1),
        transparent);
    transition: left 0.5s ease;
}

.wine-nav-btn:hover::before {
    left: 100%;
}

.wine-nav-btn:hover {
    background: linear-gradient(145deg, #faf9f7 0%, #ffffff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(113, 0, 4, 0.3);
    color: #8b4513;
    text-decoration: none;
}

.wine-nav-btn:active {
    transform: translateY(-1px);
}

.wine-category-nav {
    background: linear-gradient(145deg, #faf9f7 0%, #ffffff 100%) !important;
    border: 1px solid rgba(113, 0, 4, 0.1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.wine-content p {
    color: #5a4a3a;
    line-height: 1.8;
    font-weight: 400;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    margin-bottom: 1.5rem;
}

.wine-content .menu-price {
    color: #8b4513;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Menu Section */
.menu-section {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--warm-bg) 100%);
    padding: 2.5rem 0;
    margin: 2.5rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    border-radius: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.menu-item:hover {
    background: linear-gradient(to right, rgba(255, 248, 220, 0.5), rgba(255, 243, 224, 0.3));
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 10px;
    border-bottom-color: var(--primary-color);
}

.menu-item h4 {
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
}

.menu-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.menu-price {
    font-weight: 600;
    color: var(--light-orange);
    font-size: 1.15rem;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    margin-left: 2rem;
}

/* Events Calendar */
.events-list {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.event-item {
    background: linear-gradient(to right, var(--white) 0%, var(--cream) 100%);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
}

.event-item:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(113, 0, 4, 0.25);
    background: linear-gradient(to right, var(--cream) 0%, var(--white) 100%);
    border-color: var(--primary-color);
}

.event-item h3 {
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
}

.event-date {
    color: var(--light-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.event-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

/* Fall Activities */
.fall-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.activity-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
}

.activity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(113, 0, 4, 0.25);
    border-color: var(--primary-color);
}

.activity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.activity-content {
    padding: 1.75rem;
}

.activity-content h3 {
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
}

.activity-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

/* Shop Section */
.shop-section {
    margin: 3rem 0;
}

.shop-section .visit-content {
    gap: 3rem;
}

/* Shop Main Grid - Wine & Food Side by Side */
.shop-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin: 4rem 0;
}

.shop-category-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shop-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(113, 0, 4, 0.25);
    border-color: var(--light-orange);
}

.shop-category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.shop-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-category-card:hover .shop-category-image img {
    transform: scale(1.08);
}

.shop-category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-category-content h2 {
    color: var(--warm-brown);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: Arial, sans-serif;
}

.shop-category-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
    font-family: Arial, sans-serif;
}

.shop-category-card .visit-buttons {
    margin-top: auto;
}

@media (max-width: 768px) {
    #events-calendar {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .calendar-wrapper {
        padding: 1rem;
    }
    
    .calendar-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .calendar-header h3 {
        font-size: 1.15rem;
    }

    .calendar-nav {
        padding: 0.4rem 0.7rem;
        font-size: 1.1rem;
        min-width: 35px;
    }

    .calendar-grid {
        gap: 0.15rem;
        padding: 0.3rem;
        margin-bottom: 1rem;
    }

    .calendar-day-name {
        font-size: 0.7rem;
        padding: 0.4rem 0.2rem;
    }

    .calendar-day {
        min-height: 45px;
        padding: 0.3rem;
        font-size: 0.8rem;
    }
    
    .calendar-day.empty {
        min-height: 45px;
    }
    
    .day-number {
        font-size: 0.85rem;
    }
    
    .calendar-day.today .day-number {
        font-size: 0.9rem;
    }
    
    .calendar-day.today::before {
        font-size: 0.55rem;
        top: 1px;
        right: 2px;
        padding: 1px 3px;
    }
    
    .calendar-day.has-events::after {
        width: 5px;
        height: 5px;
        bottom: 3px;
        right: 3px;
    }
    
    .calendar-day.has-events:hover {
        transform: translateY(-1px);
    }
    
    .calendar-events-list {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .calendar-events-list h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .calendar-event-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .calendar-event-item strong {
        margin-right: 0;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }
    
    .event-time {
        margin-left: 0;
        margin-top: 0.4rem;
        display: block;
        width: 100%;
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
    }
    
    .day-events-modal {
        padding: 0.5rem;
    }
    
    .day-events-modal > div {
        width: 95%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    /* Calendar subscription buttons responsive */
    .calendar-subscription-grid {
        grid-template-columns: 1fr !important;
    }

    .shop-section .visit-content {
        grid-template-columns: 1fr;
    }
    
    .shop-section .visit-image {
        order: -1;
    }
    
    .shop-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .shop-category-card {
        padding: 2rem;
    }
    
    .shop-category-image {
        height: 200px;
    }
    
    .shop-category-content h2 {
        font-size: 1.75rem;
    }
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(113, 0, 4, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(113, 0, 4, 0.25);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--off-white);
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 1.75rem;
    text-align: center;
}

.product-content h3 {
    color: var(--warm-brown);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
}

.product-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-orange);
    margin-top: 0.75rem;
    font-family: Arial, sans-serif;
}

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

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(113, 0, 4, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(113, 0, 4, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Enhanced Mobile Optimization */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .wine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .wine-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wine-card {
        padding: 1.5rem;
    }
    
    .wine-category-nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem;
    }
    
    .wine-nav-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .visit-image {
        order: -1;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .menu-item h3 {
        font-size: 1.25rem;
    }
    
    .menu-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section-header {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Ensure mobile buttons are shown and desktop buttons hidden on small screens */
    /* Remove duplicate rules - already handled in 768px media query */
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .wine-card {
        padding: 1.25rem;
    }
    
    .wine-card h3 {
        font-size: 1.15rem;
    }
    
    .wine-card p {
        font-size: 0.9rem;
    }
    
    .wine-category-nav {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .fall-banner {
        padding: 1.5rem 0;
    }
    
    .fall-banner h2 {
        font-size: 1.75rem;
    }
    
    .fall-banner p {
        font-size: 1rem;
    }
    
    .fall-banner-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .fall-banner .btn {
        width: 100%;
        max-width: 280px;
    }
    
}

