/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Dark Petrol Theme */
:root {
    --primary-color: #1b394d;        /* Dark Petrol 018 */
    --secondary-color: #2d546b;      /* Medium Petrol */
    --accent-color: #3f6e8a;         /* Light Petrol accent */
    --dark-color: #0F2A21;           /* Very dark petrol */
    --light-color: #b8c3d4;          /* Very light petrol */
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #F5F5F5;
    --overlay: rgba(27, 55, 77, 0.8);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-essential {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 96, 100, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-reserve {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-reserve::after {
    display: none;
}

.btn-reserve:hover {
    background: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(var(--overlay), var(--overlay)), url('../images/gallery/DSC01209.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 24px;
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.section-header.left .title-decoration {
    justify-content: flex-start;
}

.olive-branch {
    color: var(--secondary-color);
    font-size: 24px;
    position: relative;
}

.olive-branch::before,
.olive-branch::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.olive-branch::before {
    left: -50px;
}

.olive-branch::after {
    right: -50px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 96, 100, 0.2);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 14px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.feature i {
    font-size: 20px;
    color: var(--secondary-color);
}

/* Menu Section */
.menu {
    background: var(--light-bg);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-tab {
    background: var(--white);
    border: 2px solid var(--light-color);
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-color);
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 96, 100, 0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.menu-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* Special Dishes */
.special-dishes {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.special-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.special-item:hover {
    transform: translateY(-10px);
}

.special-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-item:hover .special-image img {
    transform: scale(1.1);
}

.special-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 96, 100, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.section-header.light .section-tag {
    background: var(--secondary-color);
    color: var(--white);
}

.section-header.light .section-title {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-item {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    padding: 40px;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.stars i {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author .name {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author .location {
    color: var(--light-color);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.event-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 96, 100, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 96, 100, 0.2);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.event-card:hover .event-icon {
    background: var(--secondary-color);
    color: var(--white);
}

.event-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.event-card:hover .event-icon i {
    color: var(--white);
}

.event-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reservation */
.reservation {
    background: var(--light-bg);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-item .label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.reservation-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 96, 100, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: start;
    gap: 10px;
}

.form-group label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: normal;
}

.form-group.checkbox a {
    color: var(--secondary-color);
}

/* Contact/Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 96, 100, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-col p {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hours-list,
.contact-list,
.footer-links {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--light-color);
}

.contact-list li,
.footer-links li {
    margin-bottom: 10px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
}

.contact-list i {
    color: var(--secondary-color);
    width: 16px;
}

.contact-list a,
.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover,
.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--primary-color);
    padding: 20px 0;
    text-align: center;
    color: var(--light-color);
}

.footer-bottom .credits {
    margin-top: 10px;
    font-size: 14px;
}

.footer-bottom .credits a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-bottom .credits i {
    color: #e74c3c;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 96, 100, 0.1);
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Logo image styling */
.logo-image {
    height: 80px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Reservation note styling */
.reservation-note {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reservation-note i {
    font-size: 1.2rem;
    color: white;
}

.reservation-note p {
    margin: 0;
    font-weight: 500;
}

/* Menu actions styling */
.menu-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.menu-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.menu-full-btn i {
    font-size: 1.2rem;
}

.menu-full-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.3);
}

/* Wine Partner Section */
.wine-partner {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--light-color), rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.wine-partner h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.wine-description p {
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

.wine-description p:last-child {
    margin-bottom: 0;
}

.wine-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.wine-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 12px 20px;
}

/* Winery Logos Section */
.winery-logos {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 1px solid var(--light-color);
}

.winery-logo {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.winery-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(27, 77, 62, 0.2);
}

.winery-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 80px;
    }

    /* Logo responsive adjustments */
    .logo-image {
        height: 60px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Menu tabs responsive */
    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .menu-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Reservation note responsive */
    .reservation-note {
        padding: 12px 15px;
        margin: 15px 0;
        text-align: center;
    }

    .reservation-note p {
        font-size: 0.9rem;
    }

    /* About features responsive */
    .about-features {
        flex-direction: column;
        gap: 15px;
    }

    /* Wine section responsive */
    .wine-partner {
        padding: 20px 15px;
        margin-top: 25px;
    }

    .wine-actions {
        flex-direction: column;
        gap: 10px;
    }

    .wine-actions .btn {
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Winery logos responsive */
    .winery-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
        margin-top: 20px;
    }

    .winery-logo {
        padding: 12px;
    }

    .winery-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .menu-item {
        padding: 20px;
    }

    .reservation-form {
        padding: 30px 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Mobile specific adjustments for new elements */
    .logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text {
        font-size: 1rem;
        margin-top: 5px;
    }

    .menu-full-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .reservation-note {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }

    /* Wine section for small screens */
    .wine-partner {
        padding: 15px 10px;
        margin-top: 20px;
    }

    .wine-partner h4 {
        font-size: 1.1rem;
    }

    .wine-description p {
        font-size: 0.9rem;
    }

    /* Winery logos for small screens */
    .winery-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .winery-logo {
        padding: 8px;
    }

    .winery-logo img {
        max-height: 40px;
    }
}