/* ---------- GLOBAL ---------- */

html, body{
  max-width: 100%;
  overflow-x: hidden;
}

body{
    background-color: black;
    font-size: 129%;
    margin: 0;
    
}

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

/* ---------- LOGO ---------- */

#logo{
    height:75px;
    width:auto;
    margin:5px 0;
}

.logo-col{
    padding-left: 20px;   /* space from left edge */
}

/* ---------- NAV HEADER ---------- */

#navheader{
    position: fixed;
    top: -90px;            /* match height */
    left: 0;
    width: 100%;
    height: 90px;          /* ⭐ FIXED HEIGHT */
    z-index: 1000;

    display: flex;
    align-items: center;   /* vertical centering */

    transition: top 0.4s ease;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

#navheader .row{
    height: 100%;
    align-items: center;
}

#navheader nav a{
    white-space: nowrap;
}

#navheader.show{
    top: 0;
}

.languagebutton{
    line-height: 1;
    padding: 0;
    font-size: 1rem;
}

/* HEADER ICONS */
.header-icon{
  background:none;
  border:none;
  color:white;
  font-size:2rem;
  display:none;
  cursor:pointer;
}

/* dropdown panels */
.dropdown-panel{
  position:absolute;
  top:90px;
  right:20px;

  background:rgba(0,0,0,0.95);
  backdrop-filter:blur(10px);

  padding:20px;
  border-radius:10px;

  display:flex;
  flex-direction:column;
  gap:12px;

  opacity:0;
  pointer-events:none;
  transform:translateY(-10px);
  transition:all .3s ease;
  z-index:2000;
}

.dropdown-panel a,
.dropdown-panel button{
  color:white;
  background:none;
  border:none;
  text-align:left;
}

/* open state */
.dropdown-open{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

@media (max-width: 1300px){

  #desktopNav,
  #desktopLang{
    display:none !important;
  }

  .header-icon{
    display:block;
  }

}

/* ---------- HERO SECTION ---------- */

#mainpage{
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
}

/* Background layer (fade-in) */
#mainpage::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("hero.jpeg") center / cover no-repeat;

    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

body.loaded #mainpage::before{
    opacity: 1;
}

/* ---------- HERO LAYOUT ---------- */

.hero-content{
    position: relative;
    z-index: 1;

    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* ---------- HERO ELEMENTS ---------- */

#hero-logo{
    width: 180px;
    margin: 0 auto;
}

.hero-title{
    font-size: 3rem;
    font-weight: 600;
    margin: 10px 0 0 0;
}

.hero-subtitle{
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.9;
}

/* ---------- BUTTONS ---------- */

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn{

display:inline-flex;
justify-content:center;
align-items:center;

padding:14px 36px;

min-width:180px;   /* keeps nice size */
width:auto;        /* allows longer text */

border:2px solid white;

text-align:center;
white-space:nowrap;

font-weight:600;
font-size:20px;

}

.hero-btn:hover{
    background-color: white;
    color: black;
}

/* ---------- LANGUAGE SELECTOR ---------- */

.hero-language{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.languagebutton{
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.languagebutton:hover{
    opacity: 0.6;
}

/* ---------- ANIMATIONS ---------- */

@keyframes fadeUp{
    from{
        opacity:0;
        transform: translateY(25px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}

/* Start hidden */
.hero-center > *,
.hero-bottom > *{
    opacity: 0;
}

/* Animate AFTER page load */

body.loaded #hero-logo{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

body.loaded .hero-title{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

body.loaded .hero-subtitle{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1s;
}

body.loaded .hero-buttons{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.3s;
}

body.loaded .hero-language{
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.5s;
}

/* ---------- ABOUT SECTION ---------- */

#aboutus{
  
    min-height: 100vh;
       display: flex;
       overflow: hidden;
}

.about-left,
.about-right{
    flex: 1;
    opacity: 0;
    transition: all 0.9s ease;
}

.about-left{
    background-color: #111; /* static color */

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 60px;

    box-shadow: inset -40px 0 80px rgba(0,0,0,0.4);

    transform: translateX(-80px);
}

.about-content{
    max-width: 520px;
    color: white;
}

.about-content h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p{
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-right{
    background:
        url("aboutus.jpg") center / cover no-repeat;

        transform: translateX(80px);
        transition-delay: 0.2s;
        
}

.about-visible .about-left,
.about-visible .about-right{
    opacity: 1;
    transform: translateX(0);
}

#menusection{
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

.menu-left,
.menu-right{
    flex: 1;
}

.menu-left{
    background:
        url("menu-preview.png") center / cover no-repeat;

    opacity: 0;
    transform: translateX(-80px);
    transition: transform 0.9s ease, opacity 0.9s ease;
}

.menu-right{
    background-color: #111;

    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-content{
    color: white;

    transform: scale(1.50);
}

.menu-intro{
    font-size: 1.6rem;
    margin-bottom: 25px;

     opacity: 0;
    transform: translateX(60px);   /* ← from right only */
    transition: transform 0.9s ease, opacity 0.9s ease;
}


.menu-icon-link{
    position: relative;
    display: inline-block;
    font-size: 70px;
    color: white;

    opacity: 0;
    transform: translateX(60px);
    transition: transform 0.9s ease, opacity 0.9s ease;
}

.menu-icon-link i{
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* filled icon hidden initially */
.icon-filled{
    position: absolute;
    inset: 0;
    opacity: 0;
}

.menu-icon-link:hover .icon-outline{
    opacity: 0;
    transform: scale(1.05);
}

.menu-icon-link:hover .icon-filled{
    opacity: 1;
    transform: scale(1.05);
}

.menu-icon-link{
    cursor: pointer;
}

.menu-icon-link:hover{
    text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.menu-visible .menu-left{
    opacity: 1;
    transform: translateX(0);
}

.menu-visible .menu-intro{
    opacity: 1;
    transform: translate(0, 0);
    transition-delay: 0.25s;
}

.menu-visible .menu-icon-link{
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}
/* outline visible normally */
.icon-outline{
    opacity: 1;
}

/* filled hidden */
.icon-filled{
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* ---------- RESTAURANTS SECTION ---------- */

#restaurants{
    min-height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
        url("restaurants-bg.jpg") center / cover no-repeat;

    scroll-margin-top: 15px;

    padding: 90px 40px 80px;
     
}

.restaurants-title{
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 60px;
    opacity: 0;

    transition: opacity 1.1s ease;
}

.restaurants-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.restaurant-card{
    width: 350px;

    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);

    border-radius: 18px;
    overflow: hidden;

    color: white;

    border: 3px solid rgba(255,255,255,0.85);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(255,255,255,0.05);

        opacity: 0;
    transition:
        transform 1.3s cubic-bezier(.22,1,.36,1),
        opacity 1.3s ease;
    
}

.restaurant-card iframe{
    width: 100%;
    height: 220px;
    border: none;
}

.restaurant-info{
    padding: 20px;
    line-height: 1.6;
}

.restaurant-info p{
    margin-bottom: 15px;
    opacity: 0.9;
}

.restaurant-card{
    transition:
        transform 1.2s cubic-bezier(.22,1,.36,1),
        opacity 1.2s ease;
}

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

.card-left{
    transform: translateX(-80px);
}

/* middle fades only */
.card-middle{
    transform: translateX(0);
}

/* right slides from right */
.card-right{
    transform: translateX(80px);
}

.card-left{
    transform: translateX(-80px);
}

/* middle fades only */
.card-middle{
    transform: translateX(0);
}

/* right slides from right */
.card-right{
    transform: translateX(80px);
}

/* ---------- RESTAURANTS VISIBLE STATE ---------- */

.restaurants-visible .restaurants-title{
    opacity: 1;
}

.restaurants-visible .restaurant-card{
    opacity: 1;
    transform: translateX(0);
}

/* timing */
.restaurants-visible .card-middle{
    transition-delay: 0.25s;
}

.restaurants-visible .card-left{
    transition-delay: 0.45s;
}

.restaurants-visible .card-right{
    transition-delay: 0.45s;
}

#takeaway{
    min-height: 100vh;
    display: flex;
}

.takeaway-half{
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.wolt{
    background:
        linear-gradient(
            135deg,
            #009de0,
            #006fa6
        );
}

.foodora{
    background:
        linear-gradient(
            135deg,
            #d70f64,
            #a60b4c
        );
}

.takeaway-content p{
    font-size: 1.4rem;
    margin-bottom: 20px;
    opacity: 0.9;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.takeaway-btn{
    display: inline-block;

    padding: 14px 34px;
    border: 2px solid white;

    color: white;
    font-size: 1.2rem;
    font-weight: 500;

    transition: all 0.3s ease;
}

.takeaway-btn:hover{
    background: white;
    color: black;
}

.takeaway-logo{
    width: clamp(120px, 12vw, 180px);    /* good visual size */
    height: auto;

    margin-bottom: 25px;

    object-fit: contain;
}

/* ---------- TAKEAWAY LOGO ANIMATION START ---------- */

.takeaway-logo{
    opacity: 0;
    transition:
        transform 1.4s cubic-bezier(.22,1,.36,1),
        opacity 1.4s ease;
}

/* Wolt enters from LEFT */
.wolt .takeaway-logo{
    transform: translateX(-100px);
}

/* Foodora enters from RIGHT */
.foodora .takeaway-logo{
    transform: translateX(100px);
}

/* ---------- TAKEAWAY VISIBLE ---------- */

.takeaway-visible .takeaway-logo{
    opacity: 1;
    transform: translateX(0);
}

#booking{
    min-height:100vh;
    scroll-margin-top: 45px;
    display:flex;
}

.booking-left,
.booking-right{
    flex:1;
}

.booking-left{
    background:
        url("booking.jpg") center / cover no-repeat;
}

.booking-right{
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
}

#bookingForm{
    display:flex;
    flex-direction:column;
    gap:15px;
    width:400px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea{
    padding:12px;
    background:#000;
    color:white;
    border:1px solid #444;
}

.datetime-row{
    display:flex;
    gap:10px;
}

.datetime-row input{
    flex:1;
}

.input-icon {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-icon input {
  width: 100%;
  padding-right: 40px;
}

.input-icon .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  opacity: 0.7;
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background-color: #2f2f2f;
  color: #e5e5e5;
  font-family: inherit;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  color: white;
}

.footer-column p {
  line-height: 1.6;
  opacity: 0.85;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
  opacity: 0.85;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 15px;
  font-size: 14px;
  opacity: 0.7;
}

.footer-column li:hover {
  color: white;
  cursor: default;
}

/* Honeypot anti-bot field */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ================================
   FOOTER EXTRA (SOCIAL + LEGAL)
================================ */

.footer-extra{
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 25px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  max-width: 1200px;
  margin: auto;
}

/* Social icons */
.footer-social{
  display: flex;
  gap: 20px;
}

.footer-social a{
  color: #e5e5e5;
  font-size: 1.6rem;
  transition: all 0.25s ease;
}

.footer-social a:hover{
  color: white;
  transform: translateY(-2px);
}

/* Legal link */
.footer-legal a{
  color: #e5e5e5;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.footer-legal a:hover{
  opacity: 1;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px){
  .footer-extra{
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ================================
   MENU PAGE HERO (MIRRORED)
================================ */

#menu-hero{
    min-height:100vh;
    display:flex;
    overflow:hidden;
}

#menu-hero > div{
    flex: 1;
}

#menu-hero{
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* flip order */
.menu-hero-text{
    order:1;
    background-color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
}

.menu-hero-image{
    order:2;

    background:
        url("menu-preview.png") center / cover no-repeat;

    opacity:0;
    transform:translateX(80px);
    transition:transform 0.9s ease, opacity 0.9s ease;
}

/* animation trigger */
.menu-hero-visible .menu-hero-image{
    opacity:1;
    transform:translateX(0);
}

/* show text + icon on menu page */
.menu-hero-visible .menu-intro{
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

.menu-hero-visible .menu-icon-link{
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

#menu-hero .menu-hero-image,
#menu-hero .menu-intro,
#menu-hero .menu-icon-link{
    opacity: 1 !important;
    transform: none !important;
}

/* ================================
   MENU FEATURED SECTION
================================ */

.menu-featured{
  background:#111;
  padding:100px 40px;
}

/* container = 2 columns */
.menu-featured-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:60px;
}

/* single food item */
.menu-item{
   display:flex;
  align-items:flex-start;   /* aligns image with top (title line) */
  gap:30px;

  color:white;
}

/* image */
.menu-item-image img{
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:12px;
   
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

.menu-img-full{
  object-fit:contain !important;
  background:#000;
}

.menu-border{
    border-radius: 33px;
}

.menu-item-image img{
    /* change this */
  background:#000;      /* optional for empty space */
}

.menu-img-rotate{
  transform: rotate(40deg);
}



/* text */
.menu-item-content h2{
  margin-bottom:10px;
  font-size:1.8rem;
}

.menu-item-content p{
  opacity:0.85;
  line-height:1.6;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px){

  .menu-featured-container{
    grid-template-columns:1fr;
  }

  .menu-item{
    flex-direction:column;
    text-align:center;
  }

  .menu-item-image img{
    width:220px;
    height:220px;
  }

}


/* ================================
   MENU CATEGORY SYSTEM
================================ */

.menu-category{
  background:#111;
  padding:120px 40px 60px;
  scroll-margin-top:110px; /* fixes fixed header anchor offset */
}

/* centered title */
.menu-category-title{
  text-align:center;
  margin-bottom:70px;
}

.menu-category-title h2{
  color:white;
  font-size:2.8rem;
  font-weight:600;
  letter-spacing:2px;
  position:relative;
  display:inline-block;
}

/* decorative underline */
.menu-category-title h2::after{
  content:"";
  display:none;
  width:60%;
  height:2px;
  background:white;
  opacity:0.4;
  margin:14px auto 0;
}

/* ================================
   MENU HERO LOGO
================================ */

.menu-hero-logo{
  width:140px;          /* adjust size here */
  height:auto;
  margin-bottom:30px;

  display:block;
  margin-left:auto;
  margin-right:auto;
}


/* ================================
   MENU LEGEND
================================ */

.menu-legend{
  background:#0e0e0e;
  padding:50px 20px;
  text-align:center;
}

.menu-legend-container{
  max-width:900px;
  margin:auto;
  color:white;
  opacity:0.85;
  font-size:1rem;
  line-height:1.7;
}

/* ================================
   MENU TAGS (SPICE + VEG)
================================ */

.menu-tags{
  margin:8px 0 4px 0;
  display:flex;
  gap:14px;
  align-items:center;
  font-size:0.95rem;
}

.spice{
  letter-spacing:2px;
}

.veg{
  color:#7ed957; /* soft green */
  font-weight:500;
}

/* optional: subtle scaling for higher spice */
.level-1{ opacity:0.7; }
.level-2{ opacity:0.85; }
.level-3{ opacity:1; }

/* ================================
   MENU RETURN SECTION
================================ */

/* ================================
   MENU RETURN SECTION
================================ */

.menu-return{
  background:#111;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:5px 20px;   /* much smaller vertical spacing */
}

.menu-return-content{
  color:white;
}

.menu-return h2{
  font-size:1.8rem;
  margin-bottom:20px;
  opacity:0.9;
}

/* ensure arrow is visible */
.menu-return .menu-icon-link{
  opacity:1;
  transform:none;
  font-size:60px;
}

.nav-wrapper,
.lang-wrapper{
  position:relative;
}


/* =================================
   RESPONSIVE MOBILE LAYOUT
   Collapse vertical split sections
================================= */

@media (max-width: 1000px){

/* ---------- ABOUT SECTION ---------- */

#aboutus{
    flex-direction: column;
}

.about-right{
    display:none; /* hide image column */
}

.about-left{
    width:100%;
    transform:none !important;
}


/* ---------- MENU SECTION ---------- */

#menusection{
    flex-direction: column;
}

.menu-left{
    display:none;
}

.menu-right{
    width:100%;
}


/* ---------- MENU HERO (menu page) ---------- */

#menu-hero{
    flex-direction: column;
}

.menu-hero-image{
    display:none;
}

.menu-hero-text{
    width:100%;
}


/* ---------- BOOKING SECTION ---------- */

#booking{
    flex-direction: column;
}

.booking-left{
    display:none;
}

.booking-right{
    width:100%;
    padding:60px 20px;
}


/* ---------- TAKEAWAY SECTION ---------- */
/* Wolt top, Foodora bottom */

#takeaway{
    flex-direction: column;
}

.takeaway-half{
    width:100%;
    padding:60px 20px;
}


/* ---------- FOODORA BUTTON STACK ---------- */

.foodora .takeaway-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.foodora .takeaway-btn{
    width:80%;
    max-width:260px;
    margin:8px 0;
}


/* ---------- HERO BUTTONS ---------- */

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

.hero-btn{
    width:80%;
    max-width:260px;
    margin:6px 0;
}


/* ---------- FORM WIDTH ---------- */

#bookingForm{
    width:100%;
    max-width:420px;
}


/* ---------- SMALLER HERO TEXT ---------- */

.hero-title{
    font-size:2.2rem;
}

.hero-subtitle{
    font-size:1.1rem;
}

}

/* ===============================
   MENU PAGE IMAGE CENTER FIX
================================ */

@media (max-width: 900px){

.menu-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.menu-item img{
    display:block;
    margin:0 auto 20px auto;
}

.menu-text{
    width:100%;
    max-width:600px;
}

}

.terms-container{
max-width:900px;
margin:140px auto;
padding:20px;
display:flex;
flex-direction:column;
gap:40px;
}

.terms-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.terms-btn{
padding:12px 28px;
border:2px solid white;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

.terms-btn:hover{
background:white;
color:black;
}

.terms-content{
background:#0b0b0b;
padding:40px;
border-radius:10px;
line-height:1.8;
}

.terms-content h1{
text-align:center;
margin-bottom:20px;
}

.terms-text{
    text-align:justify;
}

.terms-logo-img{
width:120px;
margin:0 auto;
display:block;
}

.terms-logo{
font-size:30px;
margin-top:10px;
}

.terms-tagline{
font-size:16px;
opacity:0.8;
}

/* ===============================
TERMS BRANDING
=============================== */

.terms-brand{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
gap:10px;
margin-bottom:10px;
}

/* logo image */

.terms-logo-img{
width:120px;
height:auto;
display:block;
}

/* restaurant name */

.terms-logo{
font-size:32px;
font-weight:700;
letter-spacing:1px;
margin:0;
}

/* catchphrase */

.terms-tagline{
font-size:16px;
opacity:0.75;
max-width:500px;
margin:0;
line-height:1.5;
}

@media (max-width:600px){

.terms-logo{
font-size:26px;
}

.terms-logo-img{
width:95px;
}

.terms-tagline{
font-size:14px;
}

}

.restaurant-notice{

max-width:800px;
margin:40px auto;

padding:18px 22px;

border:1px solid rgba(255,255,255,0.4);
border-radius:8px;

background:rgba(0,0,0,0.5);

font-size:15px;
line-height:1.6;

text-align:center;

}

/* Force mobile nav earlier */

@media (max-width: 1600px) {

  #desktopNav {
    display: none !important;
  }

  #desktopLang {
    display: none !important;
  }

  #menuToggle {
    display: block;
  }

  #langToggle {
    display: block;
  }

}

/* Desktop navigation */

@media (min-width: 1601px) {

  #menuToggle {
    display: none;
  }

  #langToggle {
    display: none;
  }

}

@media (max-width: 465px) {

  .takeaway-btn {
    display: block;
    margin-bottom: 12px;
  }

}


.privacy-consent{
margin-top:15px;
margin-bottom:15px;
font-size:14px;
}

.privacy-consent a{
color:#fff;
text-decoration:underline;
}

.privacy-consent input{
margin-right:6px;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon input {
  width: 100%;
  padding-right: 40px; /* space for icon */
}

.input-icon-btn {
  position: absolute;
  right: 12px;
  pointer-events: none; /* icon doesn't block clicking input */
  color: white;
  font-size: 18px;
}

/* ================================
   REVIEWS SECTION
================================ */

#reviews{
  background:#0f0f0f;
  padding:100px 40px;
  text-align:center;
  color:white;
}

.reviews-container{
  margin:auto;
}

.reviews-title{
  font-size:2.5rem;
  letter-spacing:4px;
  margin-bottom:10px;
}

.reviews-subtitle{
  opacity:0.7;
  margin-bottom:60px;
  font-size:1.2rem;
}

/* grid layout */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* review card */
.review-card{
  background:rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:16px;

  padding:25px;

  backdrop-filter:blur(8px);

  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.review-text{
  font-size:1rem;
  line-height:1.6;
  opacity:0.9;
  margin-bottom:15px;
}

.review-stars{
  color:#f5c518;
  margin-bottom:10px;
  letter-spacing:2px;
}

.review-name{
  font-size:0.9rem;
  opacity:0.7;
}

@media (max-width: 900px){

  .reviews-grid{
    grid-template-columns:1fr;
  }

}

.menu-prices {
  margin-top: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  padding: 4px 0;
}

.price {
  font-weight: 600;
  white-space: nowrap;
}