
        /* ================ */
        /* Color Variables */
        /* ================ */
        :root {
            --primary: #099972;       /* Deep sea green */
            --secondary: #014840;     /* Dark teal */
            --accent: #0bd4a2;       /* Vibrant teal */
            --highlight: #ff7e5f;    /* Coral accent */
            --light: #f5f9f8;        /* Light sea foam */
            --dark: #23312e;         /* Darkened teal */
            --text: #23312e;         /* Main text color */
            --bg: #ffffff;           /* Background */
            --card-bg: #ffffff;      /* Card backgrounds */
            --header-bg: rgba(1, 72, 64, 0.9); /* Header background */
        }

        /* Dark Mode Colors */
        .dark-mode {
            --primary: #0bd4a2;
            --secondary: #099972;
            --accent: #ff7e5f;
            --highlight: #ff9a76;
            --light: #1a2e28;
            --dark: #e0f2ef;
            --text: #e0f2ef;
            --bg: #0d1f1a;
            --card-bg: #1a2e28;
            --header-bg: rgba(9, 153, 114, 0.9);
        }

        /* ================ */
        /* Base Styles */
        /* ================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
        }

        .btn {
            display: inline-block;
            background: var(--highlight);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* ================ */
        /* Header & Navigation */
        /* ================ */
        header {
            background-color: var(--header-bg);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-scrolled {
            background-color: var(--header-bg);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        /* Logo Styles */
        .logo {
            position: relative;
            display: inline-block;
            overflow: hidden;
        }

        .logo-image {
            height: 50px;
            width: auto;
            transition: transform 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .logo-water-effect {
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
            z-index: 1;
        }

        .logo:hover .logo-image {
            transform: translateY(-3px);
        }

        .logo:hover .logo-water-effect {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 1.5rem;
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            background: var(--highlight);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-left: 20px;
        }

        .theme-toggle i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .theme-toggle .fa-sun {
            opacity: 0;
        }

        .dark-mode .theme-toggle .fa-moon {
            opacity: 0;
        }

        .dark-mode .theme-toggle .fa-sun {
            opacity: 1;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
        }

        /* ================ */
        /* Hero Section */
        /* ================ */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/lavidafloating.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            background-attachment: fixed; /* Creates parallax effect */
            will-change: transform;       /* Improves performance */
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .hero .btn {
            animation: fadeIn 1.5s ease;
        }

        /* ================ */
        /* About Section */
        /* ================ */
        .about {
            background-color: var(--bg);
        }

        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text);
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* ================ */
        /* Menu Section */
        /* ================ */
        .menu {
            background-color: var(--light);
        }

        /* Search Bar */
        .menu-search-container {
            margin-bottom: 40px;
        }

        .search-wrapper {
            position: relative;
            max-width: 600px;
            margin: 0 auto 10px;
        }

        .search-wrapper i.fa-search {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
        }

        .search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border: 2px solid var(--primary);
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--bg);
            color: var(--text);
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(11, 212, 162, 0.3);
        }

        .clear-search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .search-input:not(:placeholder-shown) + .clear-search-btn {
            opacity: 1;
        }

        .search-results-count {
            text-align: center;
            color: var(--primary);
            font-weight: 600;
        }

        /* Seasonal Menu */
        .seasonal-menu-section {
            background: linear-gradient(135deg, #e6f4f1, #f0f9f7);
            border: 1px solid #d1eae4;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .seasonal-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: var(--primary);
        }

        .seasonal-badge {
            background: var(--highlight);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .seasonal-period {
            font-size: 0.9rem;
            color: var(--text);
            font-weight: normal;
            margin-left: auto;
        }

        .seasonal-menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .seasonal-item {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .seasonal-item:hover {
            transform: translateY(-5px);
        }

        .seasonal-item-image {
            position: relative;
            height: 200px;
        }

        .seasonal-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .seasonal-item-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: var(--dark);
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 30px;
            font-size: 0.8rem;
        }

        .seasonal-item-content {
            padding: 20px;
        }

        .seasonal-item-content h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .seasonal-item-desc {
            color: var(--text);
            font-size: 0.9rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .seasonal-item-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .seasonal-item-price {
            font-weight: bold;
            color: var(--highlight);
            font-size: 1.1rem;
        }

        .seasonal-item-calories {
            font-size: 0.8rem;
            color: #999;
        }

        /* Promotions */
        .promotions-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .promo-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .promo-badge {
            background: var(--highlight);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        .promo-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .promo-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            transition: transform 0.3s ease;
        }

        .promo-item:hover {
            transform: translateY(-5px);
        }

        .promo-image {
            position: relative;
            width: 150px;
            flex-shrink: 0;
        }

        .promo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .promo-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: var(--dark);
            font-weight: bold;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .promo-content {
            padding: 20px;
            flex: 1;
        }

        .promo-content h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .promo-desc {
            font-size: 0.9rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .promo-price {
            margin-bottom: 10px;
        }

        .original-price {
            text-decoration: line-through;
            margin-right: 10px;
            opacity: 0.7;
        }

        .discounted-price {
            font-weight: bold;
            font-size: 1.2rem;
        }

        .promo-time {
            font-size: 0.8rem;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Menu Filter */
        .menu-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }

        .filter-btn {
            padding: 8px 20px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .menu-item {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .menu-item-name {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .menu-item-price {
            color: var(--highlight);
            font-weight: 700;
        }

        .menu-item-desc {
            color: var(--text);
            font-size: 0.9rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .menu-item-tag {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 3px 10px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        /* No Results */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            color: var(--text);
        }

        /* View More Button */
        .view-more-container {
            text-align: center;
            margin-top: 40px;
        }

        .view-more-btn {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .view-more-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* ================ */
        /* Gallery Section */
        /* ================ */
        .gallery {
            background-color: var(--bg);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-item-overlay i {
            color: white;
            font-size: 2rem;
        }

        /* ================ */
        /* Reservation Section */
        /* ================ */
        .reservation {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/Drone3_80313864.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .reservation h2 {
            color: white;
        }

        .reservation-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(87, 197, 182, 0.3);
        }

        .form-control:invalid {
            border-color: #ff6b6b;
        }

        /* ================ */
        /* Contact Section */
        /* ================ */
        .contact {
            background-color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            background: var(--accent);
            color: var(--dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .contact-text a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--accent);
        }

        .map {
            height: 100%;
            min-height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ================ */
        /* Footer */
        /* ================ */
        footer {
            background: var(--secondary);
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ================ */
        /* Animations */
        /* ================ */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* ================ */
        /* Responsive Styles */
        /* ================ */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--header-bg);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
                margin-left: 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .promo-item {
                flex-direction: column;
            }
            
            .promo-image {
                width: 100%;
                height: 150px;
            }
            
            .seasonal-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .seasonal-period {
                margin-left: 0;
            }
            
            .search-input {
                padding: 10px 15px 10px 40px;
                font-size: 0.9rem;
            }

            .theme-toggle {
                margin-left: 0;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 25px;
            }
            
            .reservation-form {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 80vh;
                background-position: 75% center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }