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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Main Container Image */
.main-container-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.main-container-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.main-container-image:hover .main-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .main-container-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .main-container-image {
        height: 200px;
    }
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6B46C1, #8B5CF6);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8B5CF6, #6B46C1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

.btn-outline {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

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

.btn-accent {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F7931E, #FF8C42);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-accent:hover::before {
    left: 0;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn i {
    margin-right: 8px;
    font-size: 0.9em;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin-left: 2rem;
}

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

.nav-link:hover {
    color: #8B4513;
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF8DC, #F5DEB3);
    padding: 100px 20px 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
    line-height: 1.2;
}

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

.hero-search {
    margin: 2.5rem 0;
    position: relative;
}

.search-form {
    max-width: 550px;
    position: relative;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.search-input-group::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #8B4513, #A0522D, #D2691E);
    border-radius: 60px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.search-input-group:focus-within {
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.search-input-group:focus-within::before {
    opacity: 1;
}

.search-input-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: #333;
    font-weight: 500;
}

.search-input-group input::placeholder {
    color: #aaa;
    font-weight: 400;
    transition: color 0.3s ease;
}

.search-input-group:focus-within input::placeholder {
    color: #ccc;
}

.search-input-group button {
    padding: 18px 25px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 70px;
    position: relative;
    overflow: hidden;
}

.search-input-group button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.search-input-group button:hover::before {
    width: 300px;
    height: 300px;
}

.search-input-group button:hover {
    background: linear-gradient(135deg, #A0522D, #D2691E);
    transform: scale(1.05);
}

.search-input-group button:active {
    transform: scale(0.98);
}

.search-input-group button i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.search-input-group button:hover i {
    transform: scale(1.1);
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image i {
    font-size: 15rem;
    color: #8B4513;
    opacity: 0.3;
}

/* Quick Search Section */
.quick-search {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 50%, #f5f5f5 100%);
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.quick-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.03), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.quick-search-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-search h3 {
    color: #8B4513;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quick-search h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.search-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    color: #555;
    text-decoration: none;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    text-align: center;
    white-space: nowrap;
}

.search-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.search-tag:hover::before {
    left: 0;
}

.search-tag:hover {
    color: white;
    border-color: #8B4513;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.search-tag:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.search-tag i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.search-tag:hover i {
    transform: rotate(8deg) scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Staggered animation for search tags */
.search-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.search-tag:nth-child(2) {
    animation-delay: 0.2s;
}

.search-tag:nth-child(3) {
    animation-delay: 0.3s;
}

.search-tag:nth-child(4) {
    animation-delay: 0.4s;
}

.search-tag:nth-child(5) {
    animation-delay: 0.5s;
}

.search-tag:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-tag {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Vineyards Section */
.vineyards {
    padding: 80px 0;
    background: white;
}

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

.vineyard-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;
}

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

.vineyard-image {
    height: 200px;
    background: linear-gradient(135deg, #90EE90, #228B22);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vineyard-image i {
    font-size: 4rem;
    color: white;
}

.vineyard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vineyard-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vineyard-image-link:hover {
    transform: scale(1.05);
}

.vineyard-image-link img,
.vineyard-image-link i {
    transition: all 0.3s ease;
}

.vineyard-image-link:hover img {
    filter: brightness(1.1);
}

.vineyard-image-link:hover i {
    transform: scale(1.1);
}

.vineyard-content {
    padding: 2rem;
}

.vineyard-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.location {
    color: #666;
    margin-bottom: 0.5rem;
}

.location i {
    margin-right: 5px;
    color: #8B4513;
}

.established {
    color: #8B4513;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

/* Wines Section */
.wines {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F8FF, #E6E6FA);
}

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

.wine-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;
}

.wine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.wine-card[onclick] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.wine-card[onclick]:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.wine-image {
    height: 400px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wine-image i {
    font-size: 5rem;
    color: white;
}

.wine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.wine-content {
    padding: 2rem;
}

.wine-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.vineyard {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.vineyard-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-style: normal;
    transition: all 0.3s ease;
}

.vineyard-link:hover {
    color: #8B4513;
    text-decoration: none;
    transform: translateX(2px);
}

.wine-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.wine-details span {
    background: #F0F0F0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.wine-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.click-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8B4513;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.wine-card[onclick]:hover .click-indicator {
    opacity: 1;
    transform: translateX(5px);
}

.click-indicator i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.wine-card[onclick]:hover .click-indicator i {
    transform: translateX(3px);
}

.wine-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

/* Star Rating Styles for Recent Reviews */
.star {
    color: #ddd;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.star.filled {
    color: #FFD700;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.no-rating {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: bold;
}

.about-image {
    text-align: center;
}

.about-image i {
    font-size: 12rem;
    color: #8B4513;
    opacity: 0.3;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8DC, #F5DEB3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #8B4513;
    margin-right: 1rem;
    width: 40px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

/* Footer */
.footer {
    background: #2C1810;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

/* 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;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

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

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

    .hero-image i {
        font-size: 8rem;
    }

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

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .wine-details {
        justify-content: center;
    }

    .wine-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .about-image i {
        font-size: 8rem;
    }

    .search-tags {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
        padding: 0 10px;
    }

    .search-tag {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: 130px;
        gap: 8px;
    }

    .search-tag i {
        font-size: 1rem;
    }

    .quick-search h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .search-input-group {
        border-radius: 50px;
    }

    .search-input-group input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .search-input-group button {
        padding: 12px 15px;
        min-width: 55px;
    }
}

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

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

    .vineyard-grid,
    .wine-grid {
        grid-template-columns: 1fr;
    }

    .hero-search {
        margin: 1.5rem 0;
    }

    .search-form {
        max-width: 100%;
    }

    .search-input-group input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .search-input-group button {
        padding: 12px 15px;
        min-width: 50px;
    }

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

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

    .search-tags {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 280px;
    }

    .search-tag {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-width: auto;
        width: 100%;
    }

    .quick-search {
        padding: 40px 0;
    }

    .quick-search h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
}

/* Dynamic Content Manager Sections */
.content-section {
    padding: 60px 0;
}

.content-section.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 80px 0;
}

.content-section.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-section.hero .content {
    flex: 1;
}

.content-section.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.content-section.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 300;
}

.content-section.hero .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #666;
}

.content-section.quick-search {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.content-section.quick-search h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section.quick-search .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.content-section.vineyards {
    background: #f8f9fa;
    text-align: center;
}

.content-section.vineyards h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-section.vineyards .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.content-section.wines {
    text-align: center;
    background: white;
}

.content-section.wines h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-section.wines .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.content-section.about {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.content-section.about h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.content-section.about .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Hero Search Bar Section */
.hero-search-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0 80px 0;
    margin-top: -40px;
}

.hero-search-bar .hero-search {
    margin-bottom: 2rem;
}

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

/* Quick Search Tags Section */
.quick-search-tags {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0 60px 0;
    margin-top: -40px;
}

/* Section spacing */
.vineyard-cards,
.wine-cards,
.about-stats {
    padding: 40px 0;
}

.vineyard-cards {
    background: #f8f9fa;
}

.wine-cards {
    background: white;
}

.about-stats {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: -40px;
}

@media (max-width: 768px) {
    .content-section.hero {
        min-height: 60vh;
        padding: 60px 0;
    }

    .content-section.hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .content-section.hero h2 {
        font-size: 2.5rem;
    }

    .hero-search-bar .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* Review Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.modal-body .form-group input,
.modal-body .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal-body .form-group input:focus,
.modal-body .form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover~label,
.rating-input input:checked~label {
    color: #FFD700;
}

.modal-body .form-group button {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-body {
        padding: 20px;
    }

    .rating-input label {
        font-size: 1.5rem;
    }
}