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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    border-color: #8B0000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A52A2A, #8B0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8B0000;
    border-color: #8B0000;
}

.btn-secondary:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #8B0000;
    font-size: 1.8rem;
    margin: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B0000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8B0000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(165, 42, 42, 0.6) 50%, rgba(139, 0, 0, 0.8) 100%), url('/hero-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.wine-glass {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.wine-glass::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Featured Wineries Section */
.featured-wineries {
    padding: 80px 0;
    background: white;
}

.featured-wineries h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.winery-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.winery-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.winery-image i {
    font-size: 2rem;
    color: white;
}

.winery-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.winery-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.winery-link {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.winery-link:hover {
    color: #A52A2A;
}

/* Local Scene Section */
.local-scene {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.scene-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.scene-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.scene-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.scene-features i {
    color: #8B0000;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.scene-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vineyard-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vineyard-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="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="60" r="2.5" fill="rgba(255,255,255,0.25)"/><circle cx="70" cy="70" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="30" cy="80" r="1.8" fill="rgba(255,255,255,0.2)"/></svg>');
    border-radius: 15px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.form-group button {
    padding: 15px 30px;
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #8B0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

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

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

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .scene-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Coming Soon Page Styles */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    padding: 120px 0 80px;
}

.coming-soon-content h1 {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.coming-soon-form {
    max-width: 400px;
    margin: 0 auto;
}

.coming-soon-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coming-soon-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.coming-soon-form input:focus {
    border-color: #8B0000;
}

.coming-soon-form button {
    padding: 15px 30px;
    white-space: nowrap;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.blog-card-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-card a:hover {
    color: #A52A2A;
}

/* Winery Directory Styles */
.directory-hero {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.directory-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.directory-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.winery-directory {
    padding: 80px 0;
}

.winery-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.winery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.winery-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.winery-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.winery-info .winery-address {
    color: #888;
    font-size: 0.9rem;
}

.winery-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.winery-actions a {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.winery-actions .btn-primary {
    background: #8B0000;
    color: white;
}

.winery-actions .btn-secondary {
    background: transparent;
    color: #8B0000;
    border: 1px solid #8B0000;
}

.winery-actions a:hover {
    transform: translateY(-2px);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.about-feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-feature p {
    color: #666;
    line-height: 1.6;
}

/* Passport Page Additional Styles */
.passport-icon {
    font-size: 4rem;
    color: #8B0000;
    margin-bottom: 2rem;
}

.passport-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.feature-item span {
    font-weight: 500;
    color: #2c3e50;
}

.launch-timeline {
    margin: 4rem 0;
    text-align: left;
}

.launch-timeline h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #ddd;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    margin-top: 4rem;
    text-align: center;
}

.cta-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Winery Directory Additional Styles */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.map-section p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin: 0.5rem 0;
}

.planning-section {
    padding: 80px 0;
    background: white;
}

.planning-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.planning-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.planning-item i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.planning-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.planning-item p {
    color: #666;
    line-height: 1.6;
}

.winery-hours {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.winery-hours i {
    margin-right: 0.5rem;
}

.winery-fees {
    color: #8B0000;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.winery-fees i {
    margin-right: 0.5rem;
}

.winery-amenities {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.winery-amenities i {
    margin-right: 0.5rem;
    color: #8B0000;
}

/* Blog Page Additional Styles */
.blog-content {
    padding: 80px 0;
}

.blog-newsletter {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.blog-newsletter h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.blog-newsletter p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.read-more {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #A52A2A;
}

/* Blog Post Styles */
.blog-post {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: #8B0000;
}

.blog-post h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.blog-post-content {
    line-height: 1.8;
    color: #333;
}

.blog-intro {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #8B0000;
    border-radius: 0 8px 8px 0;
}

.blog-post-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-post-content a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: #A52A2A;
    text-decoration: underline;
}

.blog-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid #8B0000;
}

.blog-cta p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.blog-cta a {
    color: #8B0000;
    font-weight: 600;
}

.blog-cta a:hover {
    color: #A52A2A;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 2rem 1.5rem;
    }
    
    .blog-post h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .blog-intro {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Message Notifications */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    position: relative;
}

.message-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message-content i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-content span {
    flex: 1;
    line-height: 1.4;
}

.message-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.message-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .message-content {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb-list a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #A52A2A;
}

.breadcrumb-list li[aria-current="page"] {
    color: #666;
    font-weight: 500;
}

/* 404 Error Page Styles */
.error-hero {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.error-content {
    position: relative;
    z-index: 2;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.error-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.error-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.error-help {
    padding: 4rem 0;
    background: #f8f9fa;
}

.error-help h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8B0000;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

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

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.help-icon {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.help-card h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.help-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.error-wineries {
    padding: 4rem 0;
    background: white;
}

.error-wineries h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #8B0000;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.error-wineries p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.winery-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.winery-link {
    background: #8B0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #8B0000;
}

.winery-link:hover {
    background: white;
    color: #8B0000;
    transform: translateY(-2px);
}

.error-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    color: white;
}

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

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    background: white;
    color: #8B0000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
    .error-hero h1 {
        font-size: 2.5rem;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-subtitle {
        font-size: 1.1rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .winery-quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}
