/* ============================================
   CSS Variables & Reset - ALL BUGS FIXED
   ============================================ */
:root {
    --primary: #8B1A1A;
    --primary-dark: #5C1010;
    --primary-light: #C41E3A;
    --secondary: #D4A24C;
    --secondary-light: #F5E6C8;
    --dark: #1A120B;
    --dark-light: #2C1F14;
    --text: #2D2D2D;
    --text-light: #666;
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --gold: #D4A24C;
    --gold-light: #F0DBA5;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(139,26,26,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cairo', sans-serif;
    --radius: 12px;
    --container-width: 1200px;
    --navbar-height: 85px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

.mt-4 {
    margin-top: 40px;
}

.highlight {
    color: var(--secondary);
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    display: flex;
    gap: 12px;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-primary);
}

.preloader-spinner span {
    animation: preloaderBounce 1.4s infinite ease-in-out both;
}

.preloader-spinner span:nth-child(1) { animation-delay: -0.32s; }
.preloader-spinner span:nth-child(2) { animation-delay: -0.16s; }
.preloader-spinner span:nth-child(3) { animation-delay: 0s; }
.preloader-spinner span:nth-child(4) { animation-delay: 0.16s; }

@keyframes preloaderBounce {
    0%, 80%, 100% { transform: scale(1); }
    40% { transform: scale(1.2); }
}

/* ============================================
   Navigation - FIXED SPACING
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: var(--dark);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar.scrolled {
    background: var(--dark);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px; /* Added gap between logo and nav */
}

/* LOGO - with proper spacing */
.logo {
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* NAV MENU - with proper spacing */
.nav-menu {
    display: flex;
    gap: 35px; /* Increased gap between nav links */
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* NAV ACTIONS - with proper spacing */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased gap */
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 10px 20px; /* Increased padding */
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-secondary);
    white-space: nowrap;
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
}

.lang-icon {
    font-size: 18px;
}

.lang-text {
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-width: 180px;
}

.btn i {
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(139,26,26,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139,26,26,0.4);
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139,26,26,0.2);
}

.btn-outline.light {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline.light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(139,26,26,0.08);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--gold-light);
    background: rgba(212,162,76,0.15);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 16px auto 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    margin-top: calc(-1 * var(--navbar-height));
    padding-top: var(--navbar-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26,18,11,0.85) 0%, rgba(26,18,11,0.4) 100%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(139,26,26,0.2) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    padding: 60px 0 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,162,76,0.2);
    border: 1px solid rgba(212,162,76,0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    color: var(--white);
    font-size: 48px;
    -webkit-text-fill-color: var(--white);
}

.hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   About Preview
   ============================================ */
.about-preview {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(139,26,26,0.3);
}

.image-experience-badge span:first-child {
    display: block;
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.image-experience-badge span:last-child {
    font-size: 14px;
    opacity: 0.8;
}

.about-content h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.feature i {
    color: var(--gold);
    font-size: 18px;
    width: 24px;
}

.feature span {
    font-weight: 500;
    font-size: 14px;
}

/* ============================================
   Restaurants Section
   ============================================ */
.restaurants {
    background: var(--white);
}

.restaurant-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.restaurant-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.restaurant-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.card-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.card-tags span {
    background: var(--off-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    transition: var(--transition);
}

.card-link i {
    transition: var(--transition);
}

.card-link:hover {
    color: var(--primary-dark);
}

.card-link:hover i {
    transform: translateX(6px);
}

/* ============================================
   Sustainability Section
   ============================================ */
.sustainability {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,26,26,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sustainability-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sustainability-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.8;
    margin: 16px 0 32px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.sust-item {
    background: rgba(255,255,255,0.04);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.sust-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.sust-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,162,76,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.sust-icon i {
    font-size: 22px;
    color: var(--gold);
}

.sust-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sust-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.sustainability-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sustainability-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--off-white);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author h4 {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-brand h3 + p {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    margin: 16px 0 24px;
    font-size: 14px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-restaurants h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul,
.footer-restaurants ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-restaurants li {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-restaurants li:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 14px;
}

.footer-qatar {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(139,26,26,0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139,26,26,0.4);
}

/* ============================================
   Responsive Design - FIXED
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    .hero-title-sub {
        font-size: 36px;
    }
    .about-grid,
    .sustainability-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .nav-wrapper {
        gap: 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .lang-toggle {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    :root {
        --navbar-height: 70px;
    }
    
    .navbar {
        height: 70px;
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    .logo-sub {
        font-size: 9px;
        letter-spacing: 3px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        overflow-y: auto;
        margin: 0;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu a {
        font-size: 18px;
        color: var(--white);
    }
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .lang-toggle {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .lang-text {
        font-size: 12px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 40px;
    }
    .hero-title-sub {
        font-size: 28px;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    :root {
        --navbar-height: 60px;
    }
    
    .navbar {
        height: 60px;
        padding: 8px 0;
    }
    
    .logo-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .logo-sub {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .lang-toggle {
        padding: 5px 10px;
        font-size: 11px;
        gap: 5px;
    }
    
    .lang-icon {
        font-size: 14px;
    }
    
    .lang-text {
        font-size: 11px;
    }
    
    .nav-menu {
        padding: 70px 30px 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    .hero-title-sub {
        font-size: 22px;
    }
    .hero-description {
        font-size: 16px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 28px;
    }
    .image-experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 14px 20px;
    }
    .image-experience-badge span:first-child {
        font-size: 28px;
    }
    .restaurant-slider {
        grid-template-columns: 1fr;
    }
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 16px;
    }
    .stat-number {
        font-size: 22px;
    }
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-width: 140px;
    }
}