/* style.css - Complete Updated Styles */

:root {
    /* Primary Colors */
    --deep-teal: #0F4C5C;
    --muted-green: #4F7F6A;
    --soft-gold: #C2A14D;
    
    /* Neutral Colors */
    --warm-gray: #E5E5E5;
    --charcoal-gray: #2E2E2E;
    --off-white: #FAFAFA;
    --pure-white: #FFFFFF;
    
    /* Functional Colors */
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --success: #4CAF50;
    --danger: #F44336;
    
    /* Design Tokens */
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--deep-teal);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--soft-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-green);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    border: 2px solid var(--deep-teal);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--pure-white);
    border: none;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-teal);
    border: 2px solid var(--deep-teal);
}

.btn-outline:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}
/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-teal);
    font-family: 'Playfair Display', serif;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Hero Logo */
.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

/* Section Logo */
.section-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.section-logo-small {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Section Header with Logo */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 30px;
}

/* Map Logo */
.map-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
}

/* Footer Logo */
.footer-logo-image {
    height: 60px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white);
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 5px;
}

.footer-tagline-italian {
    color: var(--soft-gold);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.footer-logo p {
    margin-top: 5px;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Popup Logo */
.popup-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Menu Page Specific */
.menu-nav .logo-image {
    height: 45px;
}

.menu-hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Logo Adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .section-logo {
        height: 60px;
    }
    
    .section-logo-small {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 35px;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .section-logo {
        height: 50px;
    }
    
    .menu-hero-logo {
        height: 70px;
    }
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 1px solid var(--warm-gray);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-teal);
}

.logo i {
    color: var(--soft-gold);
    margin-right: 10px;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal-gray);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--soft-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-teal);
}

.nav-cta .btn {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta .btn:hover {
    background-color: var(--muted-green);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal-gray);
    cursor: pointer;
}

/* Menu Page Navigation */
.menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(15, 76, 92, 0.95) 0%, rgba(15, 76, 92, 0.85) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-nav .nav-container {
    padding: 15px 20px;
}

.menu-nav .logo {
    color: var(--pure-white);
}

.menu-nav .nav-link {
    color: rgba(14, 14, 14, 0.9);
}

.menu-nav .nav-link:hover,
.menu-nav .nav-link.active {
    color: var(--pure-black);
}

.menu-nav .nav-link::after {
    background-color: var(--soft-gold);
}

.menu-nav .btn-whatsapp {
    background-color: var(--soft-gold);
    color: var(--deep-teal);
}

.menu-nav .btn-whatsapp:hover {
    background-color: var(--pure-white);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--deep-teal);
    color: var(--pure-white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--deep-teal);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    color: var(--pure-white);
    text-align: center;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 76, 92, 0.8), rgba(46, 46, 46, 0.9));
}

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--pure-white);
    transform: scale(1.2);
}

.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slide-control:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slide-control.prev {
    left: 30px;
}

.slide-control.next {
    right: 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-tagline {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--soft-gold);
    font-style: italic;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    font-size: 1.5rem;
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

/* About Section */
.about {
    background-color: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--deep-teal);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--charcoal-gray);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--off-white);
    padding: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--soft-gold);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--muted-green);
}

.feature i {
    color: var(--muted-green);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
}

.image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    border: 5px solid var(--pure-white);
}

.image-frame:hover {
    transform: scale(1.02);
}

.image-frame img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* Best Sellers Section */
.best-sellers {
    background-color: var(--off-white);
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.best-seller-card {
    background-color: var(--pure-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--warm-gray);
    position: relative;
}

.best-seller-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--muted-green);
}

.best-seller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--soft-gold);
    color: var(--pure-white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.best-seller-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.best-seller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.best-seller-card:hover .best-seller-image img {
    transform: scale(1.05);
}

.best-seller-content {
    padding: 20px;
}

.best-seller-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-teal);
}

.best-seller-content p {
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.best-seller-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--warm-gray);
}

.best-seller-price .price {
    font-weight: 700;
    color: var(--muted-green);
    font-size: 1.3rem;
}

/* Categories Section with Images */
.categories {
    background-color: var(--pure-white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--off-white);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 120px;
}

.category-tab.active,
.category-tab:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    border-color: var(--soft-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tab i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--muted-green);
}

.category-tab.active i,
.category-tab:hover i {
    color: var(--soft-gold);
}

.category-tab span {
    font-weight: 600;
    font-size: 0.9rem;
}

.category-content {
    background-color: var(--off-white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--warm-gray);
}

/* Category Items with Images */
.category-items-with-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    display: none;
}

.category-items-with-images.active {
    display: grid;
    animation: fadeIn 0.5s ease-out;
}

.category-item-with-image {
    background-color: var(--pure-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--muted-green);
}

.category-item-with-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--soft-gold);
}

.category-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.category-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-item-with-image:hover .category-item-image img {
    transform: scale(1.05);
}

.category-item-content {
    padding: 20px;
}

.category-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--deep-teal);
}

.category-item-description {
    color: var(--charcoal-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item-price {
    font-weight: 700;
    color: var(--muted-green);
    font-size: 1.1rem;
}

.category-item-size {
    font-size: 0.85rem;
    color: var(--muted-green);
    background-color: var(--off-white);
    padding: 4px 10px;
    border-radius: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reservation Section */
.reservation {
    background-color: var(--off-white);
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservation-form {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--warm-gray);
}

.reservation-form .section-title {
    text-align: left;
    color: var(--deep-teal);
}

.reservation-form .section-title::after {
    left: 0;
    transform: none;
    background-color: var(--soft-gold);
}

.reservation-form .section-subtitle {
    text-align: left;
    margin: 0 0 30px 0;
    color: var(--muted-green);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--pure-white);
    color: var(--charcoal-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--muted-green);
    box-shadow: 0 0 0 3px rgba(79, 127, 106, 0.1);
}

.whatsapp-note {
    text-align: center;
    margin-top: 15px;
    color: var(--charcoal-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.reservation-info {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--warm-gray);
}

.reservation-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--deep-teal);
    position: relative;
    padding-bottom: 15px;
}

.reservation-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--soft-gold);
}

.hours {
    margin-bottom: 30px;
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--warm-gray);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--warm-gray);
    color: var(--charcoal-gray);
}

.hour-item:last-child {
    border-bottom: none;
}

.contact-info {
    margin-bottom: 30px;
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--warm-gray);
}

.contact-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--deep-teal);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    color: var(--charcoal-gray);
    line-height: 1.5;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--muted-green);
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--deep-teal);
    color: var(--pure-white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--muted-green);
    transform: translateY(-3px);
}

.social-links .whatsapp-social {
    background-color: var(--whatsapp-green);
}

.social-links .whatsapp-social:hover {
    background-color: var(--whatsapp-dark);
}

/* Contact Section */
.contact {
    background-color: var(--pure-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    border: 1px solid var(--warm-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1) brightness(0.95);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 76, 92, 0.9), transparent);
    padding: 30px;
    color: var(--pure-white);
}

.map-info h3 {
    color: var(--pure-white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.map-info h3 i {
    color: var(--soft-gold);
    margin-right: 10px;
}

.map-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.map-actions {
    margin-top: 15px;
}

.map-actions .btn {
    background-color: var(--pure-white);
    color: var(--deep-teal);
}

.map-actions .btn:hover {
    background-color: var(--soft-gold);
    color: var(--pure-white);
}

.contact-details {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--warm-gray);
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--deep-teal);
}

.contact-details > p {
    color: var(--charcoal-gray);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--warm-gray);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--muted-green);
    width: 40px;
    background-color: var(--pure-white);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-method .fa-whatsapp {
    color: var(--whatsapp-green);
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--deep-teal);
}

.contact-method p {
    color: var(--charcoal-gray);
    line-height: 1.5;
}

.contact-method small {
    color: var(--charcoal-gray);
    font-size: 0.85rem;
}

.download-menu {
    background-color: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--soft-gold);
    text-align: center;
}

.download-menu h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-teal);
}

.download-menu > p {
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.download-menu .btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo p {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--soft-gold);
    font-style: italic;
    margin-top: 5px !important;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--pure-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--soft-gold);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--soft-gold);
    padding-left: 5px;
}

.location-info {
    opacity: 0.8;
}

.location-info li:first-child {
    color: var(--soft-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.location-info li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 5px;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--pure-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--soft-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--soft-gold);
    transform: translateY(-3px);
}

.social-icons .whatsapp-social {
    background-color: var(--whatsapp-green);
}

.social-icons .whatsapp-social:hover {
    background-color: var(--whatsapp-dark);
}

.footer-hours {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--soft-gold);
    margin-bottom: 20px;
}

.footer-hours p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-hours p strong {
    color: var(--soft-gold);
    opacity: 1;
}

.footer-download .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--soft-gold);
}

.footer-download .btn:hover {
    background-color: var(--soft-gold);
    color: var(--deep-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom i {
    color: var(--soft-gold);
    margin: 0 5px;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1001;
    width: 350px;
    background-color: var(--pure-white);
    border-radius: var(--radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    border: 1px solid var(--warm-gray);
}

.whatsapp-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-content {
    position: relative;
}

.popup-header {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
    color: var(--pure-white);
    padding: 25px;
    text-align: center;
    position: relative;
}

.popup-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.popup-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--pure-white);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-body {
    padding: 25px;
}

.popup-body p {
    text-align: center;
    color: var(--charcoal-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.popup-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--off-white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--charcoal-gray);
    border: 1px solid var(--warm-gray);
}

.popup-btn:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--deep-teal);
}

.popup-btn i {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.popup-btn span {
    font-weight: 500;
    flex: 1;
}

.popup-footer {
    padding: 20px;
    background-color: var(--off-white);
    border-top: 1px solid var(--warm-gray);
    display: flex;
    gap: 10px;
}

.popup-footer .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--success);
    color: var(--pure-white);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    z-index: 3000;
    opacity: 0;
    transition: var(--transition);
}

.notification.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Price Tags */
.price-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-single {
    font-size: 0.9rem;
    color: var(--charcoal-gray);
}

.price-double {
    font-weight: 700;
    color: var(--muted-green);
    font-size: 1.1rem;
}

/* PDF Button */
.fa-file-pdf {
    color: #F40F02;
    margin-right: 8px;
}

/* Menu Page Styles */
.menu-hero {
    background: linear-gradient(rgba(15, 76, 92, 0.9), rgba(15, 76, 92, 0.8)), 
                url('Images/other/menu top pic.avif');
    background-size: cover;
    background-position: center;
    color: var(--pure-white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 75px;
}

.menu-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.menu-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Full Menu Section */
.full-menu {
    background-color: var(--off-white);
    padding-top: 40px;
    padding-bottom: 60px;
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 10px;
    background-color: var(--pure-white);
    border-radius: var(--radius);
    border: 1px solid var(--warm-gray);
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--off-white);
    border: 2px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--charcoal-gray);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    border-color: var(--deep-teal);
}

.menu-section-category {
    margin-bottom: 60px;
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--warm-gray);
}

.category-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--deep-teal);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--soft-gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--muted-green);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item-card-with-image {
    display: flex;
    gap: 20px;
    background-color: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--muted-green);
}

.menu-item-card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--soft-gold);
}

.menu-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item-card-with-image:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.menu-item-title {
    font-size: 1.3rem;
    color: var(--deep-teal);
    margin: 0;
    flex: 1;
}

.menu-item-price {
    font-weight: 700;
    color: var(--muted-green);
    font-size: 1.2rem;
    margin-left: 15px;
}

.menu-item-description {
    color: var(--charcoal-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-size {
    font-size: 0.9rem;
    color: var(--muted-green);
    background-color: var(--pure-white);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.menu-item-category {
    font-size: 0.8rem;
    color: var(--charcoal-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-note {
    background-color: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--soft-gold);
    margin-top: 40px;
}

.menu-note p {
    color: var(--charcoal-gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.menu-note p:last-child {
    margin-bottom: 0;
}

/* Menu CTA */
.menu-cta {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--muted-green) 100%);
    color: var(--pure-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .about-content,
    .reservation-container,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-popup {
        width: 320px;
        right: 20px;
        bottom: 90px;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        min-width: 100px;
        padding: 15px;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--pure-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-top: 1px solid var(--warm-gray);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .slide-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-control.prev {
        left: 15px;
    }
    
    .slide-control.next {
        right: 15px;
    }
    
    .whatsapp-popup {
        width: 300px;
        right: 15px;
        bottom: 80px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .map-overlay {
        padding: 20px;
    }
    
    .map-info h3 {
        font-size: 1.1rem;
    }
    
    .map-info p {
        font-size: 0.8rem;
    }
    
    .category-items-with-images,
    .best-sellers-grid,
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-hero {
        margin-top: 70px;
        padding: 120px 0 60px;
    }
    
    .menu-hero-title {
        font-size: 2.5rem;
    }
    
    .menu-section-category {
        padding: 25px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .menu-filter {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .menu-item-card-with-image {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reservation-form {
        padding: 25px;
    }
    
    .contact-details {
        padding: 25px;
    }
    
    .whatsapp-popup {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        bottom: 70px;
    }
    
    .popup-footer {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .map-overlay {
        padding: 15px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        min-width: 90px;
        padding: 12px;
    }
    
    .category-tab i {
        font-size: 1.5rem;
    }
    
    .menu-hero-title {
        font-size: 2rem;
    }
    
    .cta-buttons,
    .menu-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* View More Container */
.view-more-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Image Loading Animation */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.best-seller-image img,
.category-item-image img,
.menu-item-image img {
    animation: fadeInImage 0.5s ease-out;
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
/* Menu Page Specific Logo Styles */
.menu-hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.category-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.category-title {
    margin-bottom: 0;
}

.note-logo {
    height: 40px;
    width: auto;
    margin-right: 15px;
    border-radius: 6px;
    float: left;
}

.cta-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}