/* ====================================================================
   MyRestaurant – Global Stylesheet
   Organized for clarity, maintainability & quick scanning
   --------------------------------------------------------------------
   CONTENTS
   01. Design Tokens (CSS Variables)
   02. Base & Reset
   03. Utilities
   04. Layout (Structural Flex/Grid helpers)
   05. Components
        5.1  Navbar
        5.2  Banner
        5.3  Carousel
        5.4  Feature Cards
        5.5  Footer
   06. Media Queries (component‑specific tweaks)
==================================================================== */

/* ------------------------------------------------------------------
  01. DESIGN TOKENS –edit here to tweak the entire theme
------------------------------------------------------------------ */
:root {
  /* >>> Color Palette <<< */
  --clr-primary:           #af1917;
  --clr-primary-dark:      #981514;
  --clr-secondary:         #e74c3c;
  --clr-accent:            #f39c12;
  --clr-muted:             #7f8c8d;
  --clr-light:             #302f2c;
  --clr-dark:              #2c3e50;
  --ctr-background:        #f0f0f0;
  --ctr-background-light:  #efede3;
  --text-color:            #302f2c;

  /* >>> Image-Blend <<< */
  --blend-0-2:   rgba(0, 0, 0, 0.2);
  --blend-0-5:   rgba(0, 0, 0, 0.5);
  --blend-0-85:  rgba(0, 0, 0, 0.85);

  --anim-dur: 0.5s;

  /* >>> Typography <<< */
  --ff-base:   'DM Sans','utilyregular','Helvetica Neue', Arial, sans-serif;
  --fs-base:   1rem;      /* 16 px */
  --lh-base:   1.6;
  --fs-h1:     2.5rem;
  --fs-h2:     2rem;
  --fs-h3:     1.75rem;
  --fs-h4:     1.5rem;
  --fs-h5:     1.25rem;
  --fs-h6:     1rem;

  /* >>> Spacing <<< */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-xxl:  4rem;
  --space-xxxl: 8rem;
  --space-xxxxl:16rem;

  /* >>> Radius <<< */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-xxl: 3rem;
  --radius-xxxl: 4rem;

  /* ============================================================
     Banner defaults (desktop & mobile).  These power the new
     responsive macro / CSS and can be overridden per-banner
     via the inline custom-properties we emit from Jinja.
  ============================================================ */

  /* layout */
  --banner-width:        30%;   /* desktop  – width of .banner-inner */
  --banner-width-sm:     100%;  /* mobile   – full-width */

  --banner-height:       40vh;  /* desktop */
  --banner-height-sm:    80vh;  /* mobile  */

  /* headline */
  --text-size:           4rem;  /* ≈64 px desktop */
  --text-size-sm:        2rem;  /* ≈32 px mobile */
  --text-font-weight:    350;
  --text-line-height:    1.2;
  --text-space-after:    4rem;

  /* sub-headline */
  --subtext-size:        1.5rem; /* ≈24 px desktop */
  --subtext-size-sm:     1rem;   /* ≈16 px mobile */
  --subtext-font-weight: 350;
  --subtext-line-height: 1.6;
  --subtext-space-after: 2rem;
}



/* ------------------------------------------------------------------
  02. BASE & RESET
------------------------------------------------------------------ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{font-size: 16px;  }
::-webkit-scrollbar{display:none}
body{

  min-height:100vh;
  font-family:var(--ff-base);
  font-size:var(--fs-base);
  line-height:var(--lh-base);
  color:var(--text-color);
  background:whitesmoke;
  -webkit-font-smoothing: antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:var(--clr-primary)}

/* Headings */
h1{font-size:var(--fs-h1)}
h2{font-size:var(--fs-h2)}
h3{font-size:var(--fs-h3)}
h4{font-size:var(--fs-h4)}
h5{font-size:var(--fs-h5)}
h6{font-size:var(--fs-h6)}

/* hide on small screens */
@media(max-width:576px){.hide-sm{display:none!important}}
@media (max-width: 768px) {
      html, body {
        overflow-x: hidden !important;

      }

    }
/* ------------------------------------------------------------------
  03. UTILITIES
------------------------------------------------------------------ */
.container{width:100%;margin-inline:auto;}
.stack>*+*{margin-block-start:var(--space-md)}  /* vertical rhythm helper */
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* ------------------------------------------------------------------
  04. LAYOUT
------------------------------------------------------------------ */
main{

  gap:var(--space-md);       /* ≥1 rem space between children (banner, carousel…) */

}
::selection {
  background: rgb(205, 215, 248);
  color: black;
}

/* Firefox-specific */
::-moz-selection {
  background: rgb(205, 215, 248);
  color: black;
}
/* ------------------------------------------------------------------
  05. COMPONENTS
------------------------------------------------------------------ */
/* 5.1 NAVBAR ------------------------------------------------------ */


.navbar {
  position: fixed; /* keeps navbar always visible */
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  background: transparent;

  transition: background 0.4s ease;
}
.navbar.transparent {
  background: transparent;

}
.fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

      .navbar-logo {
            position: fixed;
            top: 20px;
            left: 20px;
            font-size: var(--fs-h1);
            font-weight: 900;
            color: var(--clr-light);
            font-family: 'Bebas Neue', sans-serif;
            text-decoration: none;
            transition: color 0.3s ease;
            z-index: 10000;
        }

        /* Hamburger Button */
        .hamburger-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 10001;
            transition: all 0.3s ease;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid transparent;
        }

        .hamburger-btn:hover {
            color:black;
            scale: 1.1;
        }

        .hamburger {
            width: 25px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: var(--clr-light);
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* Hamburger Animation */
        .hamburger-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

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

        .hamburger-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        /* Add these to your existing hamburger CSS */

/* Light hamburger (white - for dark backgrounds) */
.hamburger-btn.light .hamburger span {
    background: #ffffff !important;
}

/* Dark hamburger (black - for light backgrounds) */
.hamburger-btn.dark .hamburger span {
    background: #000000 !important;
}

        /* Mobile Menu Overlay - Floating Box */
        .mobile-menu {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 320px;
            max-height: 500px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: scale(0.8) translateY(-20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mobile-menu.active {
            transform: scale(1) translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--clr-dark);
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid rgba(0, 0, 0, 0.1);
        }

        .close-btn:hover {
            border-color: var(--clr-dark);
            background: rgba(0, 0, 0, 0.05);
        }

        .mobile-nav-links {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .mobile-nav-item {
            color:black;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            padding: 0.75rem 0;
            transition: all 0.3s ease;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            border-radius: 8px;
            padding-left: 0.5rem;
        }

        .mobile-nav-item:hover {
            color:black;
            transform: translateX(5px);
            text-decoration: underline;
        }

        .mobile-menu.active .mobile-nav-item {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-item:nth-child(1) { transition-delay: 0.05s; }
        .mobile-nav-item:nth-child(2) { transition-delay: 0.1s; }
        .mobile-nav-item:nth-child(3) { transition-delay: 0.15s; }
        .mobile-nav-item:nth-child(4) { transition-delay: 0.2s; }
        .mobile-nav-item:nth-child(5) { transition-delay: 0.25s; }
        .mobile-nav-item:nth-child(6) { transition-delay: 0.3s; }

        .mobile-cta {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-item{
            color:black;
            font-size:  24px;
        }
        .nav-item:hover{
            color:black;
            text-decoration: underline;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            color: black;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid black;
            transform: translateY(20px);
            opacity: 0;
            width: 100%;
            justify-content: center;
        }

        .mobile-menu.active .cta-button {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.4s;
        }

        .cta-button:hover {
            text-decoration: underline;

            transform: translateY(-2px);
        }

        .cta-button svg {
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        /* Menu Backdrop - Lighter for floating menu */
        .menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9998;
        }

        .menu-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 768px) {


            .mobile-nav-item {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu.active {
                width:70%!important;
            }
            .mobile-menu.active .cta-button {
                font-size: 1.2rem!important;
                gap: 0.5rem !important;
                padding: 0.2rem !important;
            }

        }

        /* ===== DEMO CONTENT (REMOVE THIS IN PRODUCTION) ===== */
        .demo-content {
            padding: 120px 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            color: white;
            text-align: center;
        }

        .demo-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 900;
        }

        .demo-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }
        }



/* 5.3 CAROUSEL ---------------------------------------------------- */
.carousel{position:relative;overflow:hidden;padding-top: 1rem}
.carousel-track{
  display:flex;
  gap:var(--carousel-gap,0);
  padding-inline:calc(var(--carousel-gap,0) / 2);
  height:100%;
  transition:transform .5s ease;
}
.carousel-item{
  display:flex;
  justify-content:center;
  align-items:center;
}
.carousel-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(0,0,0,.4);border:none;color:#fff;font-size:2rem;cursor:pointer;
  padding:.25rem .75rem;z-index:2
}
.carousel-btn.prev{left:.5rem}
.carousel-btn.next{right:.5rem}
.carousel-btn:disabled{opacity:.3;cursor:default}

.carousel-img{
  width:80%;
  height:80%;
  object-fit:cover;          /* fills slide, keeps aspect */
  border-radius:var(--radius-sm);
}

/* 5.4 FEATURE CARDS ---------------------------------------------- */
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;padding:4rem 1rem;text-align:center}
.feature{background:#fff;border-radius:var(--radius-md);padding:2rem;box-shadow:0 4px 8px rgba(0,0,0,.05)}
.feature h3{color:var(--clr-accent);margin-bottom:.5rem}



.feature-card {
\--blend-strength: 30%;
}

.feature-card .fc-img {
position: relative;
overflow: hidden;
}

.feature-card .fc-img::before {
content: "";
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background: none;
}


.feature-card.blend-top .fc-img::before {
background-image: linear-gradient(to top,
var(--blend-0-5) 0%,
var(--blend-0-2) 45%,
var(--blend-0-2) 50%,
var(--blend-0-5) 65%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}

.feature-card.blend-bottom .fc-img::before {
background-image: linear-gradient(to bottom,
var(--blend-0-5) 0%,
var(--blend-0-2) 45%,
var(--blend-0-2) 50%,
var(--blend-0-5) 65%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}

.feature-card.blend-left .fc-img::before {
background-image: linear-gradient(to left,
var(--blend-0-5) 0%,
var(--blend-0-2) 65%,
var(--blend-0-2) 70%,
var(--blend-0-5) 75%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}

.feature-card.blend-right .fc-img::before {
background-image: linear-gradient(to right,
var(--blend-0-5) 0%,
var(--blend-0-2) 65%,
var(--blend-0-2) 70%,
var(--blend-0-5) 75%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}


.feature-card.blend-top.blend-bottom .fc-img::before {
background-image:
linear-gradient(to top,
var(--blend-0-2) 45%,
var(--blend-0-2) 50%,
var(--blend-0-5) 65%,
var(--blend-0-85) 90%,
var(--ctr-background) 100%
),
linear-gradient(to bottom,
var(--blend-0-2) 45%,
var(--blend-0-2) 50%,
var(--blend-0-5) 65%,
var(--blend-0-85) 90%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}

.feature-card.blend-left.blend-right .fc-img::before {
background-image:
linear-gradient(to left,
var(--clr-light) 0%,
var(--blend-0-2) 65%,
var(--blend-0-2) 70%,
var(--blend-0-5) 75%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
),
linear-gradient(to right,
var(--blend-0-2) 0%,
var(--blend-0-2) 65%,
var(--blend-0-2) 70%,
var(--blend-0-5) 75%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}


.feature-card.blend-top.blend-bottom.blend-left.blend-right .fc-img::before {
background-image:
linear-gradient(to top,
var(--blend-0-5) 0%,
var(--blend-0-2) 45%,
var(--blend-0-2) 50%,
var(--blend-0-5) 65%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
),
linear-gradient(to bottom,
var(--blend-0-5) 0%,
var(--blend-0-2) 45%,
var(--blend-0-2) 50%,
var(--blend-0-5) 65%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
),
linear-gradient(to left,
var(--blend-0-5) 0%,
var(--blend-0-2) 65%,
var(--blend-0-2) 70%,
var(--blend-0-5) 75%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
),
linear-gradient(to right,
var(--blend-0-5) 0%,
var(--blend-0-2) 65%,
var(--blend-0-2) 70%,
var(--blend-0-5) 75%,
var(--blend-0-85) 85%,
var(--ctr-background) 100%
);
opacity: var(--blend-strength);
}




/* ------------------------------------------------------------------
  06. MEDIA QUERIES
------------------------------------------------------------------ */
@media (max-width:768px){
  /* Mobile nav */
  .nav-toggle{display:flex;margin-right:var(--space-md)}
  .nav-links{position:absolute;inset-block-start:60px;inset-inline:0;background:#f8f9fa;flex-direction:column;display:none;gap:1rem; position: fixed;
    inset: 0;
    display: none;
    background: var(--ctr-background);
    flex-direction: column;
    padding: var(--space-md);
    z-index: 9999;         }
  .nav-links.open{display:flex; margin-right: 0!important}
  /* Footer stacks */
  .footer-container{flex-direction:column;align-items:center;text-align:center}
  .footer-left,.footer-right{margin:0}
    .nav-links {
    background: var(--ctr-background);
    color: var(--clr-light);
  }

  /* ensure each link/nav‐item is white */
  .nav-links .nav-item,
  .nav-links a {
    color: var(--clr-light);
  }
  .navbar-brand{font-size:var(--fs-h4);font-weight:380;color: var(--clr-light) ;margin-left:var(--space-lg)}


}


/* ------------------------------------------------------------------
  07. BUTTON TEMPLATES
------------------------------------------------------------------ */

.rounded-button{
  font-size:1.1rem; padding:.75rem 1.5rem;
  background:var(--clr-primary); color:var(--clr-light);
  border:none; border-radius:var(--radius-sm);
}

.rounded-button-jl{
  font-size:2rem; padding:.75rem 1.5rem;
  background:transparent; color:var(--clr-light);
  border:var(--clr-muted) solid 3px;
  border-radius:var(--radius-xl);
  text-align:center;
}


.trapez-button {
  background-color: var(--clr-primary);
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0.7em 2.5em;
  font-weight: 300;
  font-family: 'utilyregular', sans-serif;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transform: skewX(-25deg);
  display: inline-block;
  overflow: hidden;
}

.trapez-button span {
  display: inline-block;
  transform: skewX(25deg); /* Counter the skew of the parent */
}

.trapez-button:hover {
  background-color: var(--clr-primary-dark);
}
.trapez-button-light:hover {
  background-color: var(--clr-primary-dark);
  border: 1px solid;
  border-color: transparent;

}


.trapez-button-light {
  background-color: transparent;
  border: 1px solid;
  border-color: var(--clr-light);
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0.9rem 2.5em;
  font-weight: 350;
  font-family: 'utilyregular', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transform: skewX(-25deg);
  display: inline-block;
  overflow: hidden;
  transition: 0.3s;
}

.trapez-button-light span {
  display: inline-block;
  transform: skewX(25deg); /* Counter the skew of the parent */
}

/*
Hutong style elements
 */

.feature-card{display:flex;gap:var(--space-lg);align-items:center;margin-block:var(--space-lg)}
.feature-card.image-right{flex-direction:row-reverse}
.feature-card .fc-img{flex:1;min-height:var(--fc-h,260px);border-radius:var(--radius-sm)}
.feature-card .fc-body{flex:1; text-align: center;}
.feature-card .btn{background:var(--clr-primary);color:#fff;padding:0.5rem 1.25rem;border:none;border-radius:var(--radius-sm)}

.feature-card .footer_feature{
  margin-top: 2rem;
  font-size: 20px;
  color: var(--clr-primary);
}



.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
           gap:var(--space-lg);padding:var(--space-xl) var(--space-md);background:var(--clr-light)}
.info-grid h4{color:var(--clr-primary);margin-bottom:.25rem}
.info-grid p{margin:0 0 .5rem}


/* flavour helpers */
/* ─── Scroll‑reveal presets ───────────────────────────────────── */
[data-anim]{opacity:0;transform:translateY(var(--anim-translate,20px)) scale(var(--anim-scale,1));
            transition:opacity var(--anim-dur,.6s) ease-out var(--anim-delay,0s),
                       transform var(--anim-dur,.6s) ease-out var(--anim-delay,0s)}
[data-anim].in-view{opacity:1;transform:none}

.anim-fade       {--anim-translate:20px}
.anim-fade-right {--anim-translate:0;transform:translateX(40px)}
.anim-fade-left  {--anim-translate:0;transform:translateX(-40px)}
.anim-zoom       {--anim-scale:.8}

/*
Hutong home Site
 */



/*
Image row macro
 */

.image-row-container {
  margin-top: 7rem;
}

/* Desktop layout - keep original styles */
@media (min-width: 769px) {
  .image-row {
    margin-top: 0; /* Reset since container now handles margin */
  }
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
  .image-row-container {
    margin-top: 2rem;
  }
}
/*
split_feature_card
 */

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--fc-h);
  overflow: visible;
}

.fc-body-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.fc-img {
  flex: 1;
  min-height: var(--fc-h);
}

.fc-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.heading_feature {
  text-align: center;
  width: 100%;
  margin: 0;
}

.body_feature {
  max-width: 100%;
  margin: 0;
}

.footer_feature {
  text-align: center;
  width: 100%;
  margin: 0;
}



.trapez-button {
  display: inline-block;
  text-align: center;
}


/* ==================================================================
   Two-column feature card (v2)
   ================================================================== */
.feature-card-2 {
  position: relative;   /* so our abs-pos’d child is measured from here */
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  overflow: visible;
}

.feature-card-2 .fc-img {
  margin-inline: 0;          /* 🚫 no extra margin—grid-gap is your only gap */
}

.feature-card-2.image-right .fc-img        { order: 1; }
.feature-card-2.image-right .fc-body-split { order: 2; }
.feature-card-2 .fc-body-split              { overflow: visible; }

/* ==================================================================
   Overlay-image container
   ================================================================== */
.fc-inner-img-container {
  position: absolute;
  top:  var(--inner-img-ty, 0);

  left: calc(100% + var(--inner-img-tx, 0));
  width:  var(--container-width, 280px);
  height: var(--container-height,350px);
  overflow: visible;
}

/* ==================================================================
   Overlay-image itself
   ================================================================== */
.fc-inner-img {
  position: absolute;
  top:    var(--inner-img-offset-top,  0);
  left:   var(--inner-img-offset-left, 0);
  width:  var(--inner-img-width,       100%);
  height: var(--inner-img-height,      100%);
  object-fit:      var(--inner-img-fit, cover);
  object-position: center;
  transform-origin: center;
  z-index: 1;

  /* desktop: full control */
  transform:
    translateX(var(--inner-img-tx, 0px))
    translateY(var(--inner-img-ty, 0px))
    scale(var(--inner-img-scale, 1));
}


@media (max-width: 1868px) {
  .fc-inner-img-container {
    left: clamp(
      15vw,                                 /* never less than this */
      calc(100% + var(--inner-img-tx, 0)),
      calc(100% + var(--inner-img-tx, 0))   /* identical upper bound */
    );
  }
}
@media (max-width: 1300px) {
  .fc-inner-img-container {
    left: clamp(
      25vw,                                 /* never less than this */
      calc(100% + var(--inner-img-tx, 0)),
      calc(100% + var(--inner-img-tx, 0))   /* identical upper bound */
    );
  }
}

@media (max-width: 1100px) {
  .fc-inner-img-container {
    display: none!important;
  }
}
/* Order variants */
.feature-card.image-right {
  grid-template-columns: 1fr 1fr;
}

.feature-card.image-left {
  grid-template-columns: 1fr 1fr;
}

.feature-card.image-right .fc-img {
  order: 1;
}

.feature-card.image-right .fc-body-split {
  order: 2;
}
.feature-card-2,
.feature-card-2 .fc-body-split {
  overflow: visible;
}

.fc-inner-img {
  position: absolute;
  z-index: 1;      /* guarantee it sits above the big pic */
}


/* ------------------------------------------------------------------
   Two-column card
------------------------------------------------------------------ */
.feature-card-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;                 /* ← mandatory distance */
}

/* flip the columns when needed */
.feature-card-2.image-right .fc-img        { order: 2; }
.feature-card-2.image-right .fc-body-split { order: 1; }

/* ------------------------------------------------------------------
   Overlay image — container
------------------------------------------------------------------ */
.fc-inner-img-container {
  position: relative;
  width:  var(--container-width,  300px);
  height: var(--container-height, 200px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


.rounded-button-jl {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: black;
    border: 3px solid black;
    border-radius: 9999px;
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
    cursor: pointer;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.rounded-button-jl:hover {
    background-color: black;
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.rounded-button-jl:hover svg {
    fill: white;
}

.rounded-button-jl:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ------------------------------------------------------------------
   Overlay image — actual <img>
------------------------------------------------------------------ */
.fc-inner-img {
  position: absolute;
  top:         var(--inner-img-offset-top, 0);
  left:        var(--inner-img-offset-left, 0);
  width:       var(--inner-img-width, 100%);
  height:      var(--inner-img-height, 100%);
  object-fit:  var(--inner-img-fit, cover);
  object-position: center;
  transform:
      translate(
        var(--inner-img-tx, 0),
        var(--inner-img-ty, 0)
      )
      scale(var(--inner-img-scale, 1));
  transform-origin: center;
}
/* --- Footer 2: Dark design with vertical separators --- */
.footer_2 {
  margin-top: 5rem;
  background: var(--ctr-background-light);
  color: var(--clr-light);
  padding-block: var(--space-xl);
}

.footer_2 a,
.footer_2 p {
  color: var(--clr-light);
}

.footer-container_2 {
  display: grid;
  width: 77%;
  grid-template-columns: 0.8fr 1fr 0.9fr;
  place-items: center;
  gap: var(--space-lg);
}

.footer-left_2,
.footer-center_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0;
}

.footer-right_2 {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
  padding: 0;
}

.footer-left_2 {
  height: 8.5rem;
  margin: 2rem 20% 0 0;
  padding-right: 30%;
  justify-self: left;
}

.footer-right_2 {
  height: 8.5rem;
  margin: 2rem 0 0 20%;
  padding-left: 30%;
  justify-self: right;
}

.footer-center_2 {
  pointer-events: auto;
  background: inherit;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.footer-map {
  width: 20%;
  padding-left: 2%;
}

.footer-item_2 {
  position: relative;
  color: #888;
  margin-left: 0.5rem;
}

.footer-item_2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: transparent;
  transition: 0.3s;
  text-decoration: none;
  color: var(--clr-light);
}

.footer-item_2:hover,
.footer-item_2:hover::after {
  color: var(--clr-light);
  transform: scale(1.05);
  cursor: pointer;
  text-decoration: underline;
}

.copyright_2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--space-sm);
  font-size: 0.9rem;
  color: #888;
  background: var(--ctr-background-light);
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.copyright_left_2 {
  display: flex;
  align-items: center;
  color: #888;
}

.copyright_right_2 {
  margin-right: 1rem;
  color: #888;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .footer_2 {
    margin-top: 2rem;
    padding-block: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-container_2{
    gap:0!important
  }

  .footer-map {
    width: 100%;
    padding-left: 0;
    order: 1; /* Move map to bottom on mobile */
  }

  .footer-map #map {
    height: 200px !important; /* Smaller map height on mobile */
  }

  /* Mobile-specific map styles */
  .footer-map #map > div[style*="position: absolute"] {
    width: 60% !important; /* Smaller address box on mobile */
    max-width: 200px !important;
  }

  .footer-container_2 {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 2rem;
    margin: 0 auto;
  }

  .footer-left_2,
  .footer-center_2,
  .footer-right_2 {
    height: auto;
    margin: 0;
    padding: 1.5rem 0;
    text-align: center;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--clr-light);
  }

  .footer-right_2:last-child {
    border-bottom: none;
  }

  .footer-right_2 {
    text-align: center; /* Center align opening hours on mobile */
  }

  /* Social media icons - make them larger on mobile */
  .social-media-icons {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  /* Copyright section */
  .copyright_2 {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-left: 0;
    margin-bottom: 0;
    padding: 1rem;
    align-items: center;
  }

  .copyright_left_2 {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  .copyright_left_2 span {
    order: 2;
  }

  .copyright_left_2 .footer-item_2 {
    order: 1;
  }

  .copyright_right_2 {
    margin-right: 0;
    order: 3;
  }

  .footer-item_2 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
}

@media (max-width: 480px) {
  .footer_2 {
    margin-top: 1rem;
    padding-block: 1.5rem;
  }


  .footer-container_2{
    gap:0!important
  }
  .footer-left_2,
  .footer-center_2,
  .footer-right_2 {
    padding: 1rem 0;
  }

  .footer-map #map {
    height: 150px !important; /* Even smaller on very small screens */
  }

  /* Mobile-specific map styles for very small screens */
  .footer-map #map > div[style*="position: absolute"] {
    width: 55% !important; /* Even smaller address box */
    max-width: 180px !important;
  }

  /* Make text smaller on very small screens */
  .footer_2 p {
    font-size: 0.9rem;
  }

  .footer_2 h3,
  .footer_2 span[style*="font-size: 24px"] {
    font-size: 1.2rem !important;
  }

  .copyright_2 {
    font-size: 0.8rem;
    padding: 0.5rem;
  }

  .social-media-icons {
    gap: 15px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
}

/*
menu Page
 */

/* menu Styles */
/* Mobile-Optimized menu Styles */

/* Base menu Section Styles */
.menu-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.desktop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Zigzag Layout for Image+Content */
.zigzag-reverse .desktop-layout .menu-content {
  order: 2;
}

.zigzag-reverse .desktop-layout .menu-image {
  order: 1;
}

/* Full-width Content Layout (No Image) */
.menu-content-full {
  grid-column: 1 / -1;
  width: 100%;
}

.menu-items-two-column {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
  position: relative;
}

.menu-items-two-column::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.menu-column-left {
  padding-right: 1.5rem;
}

.menu-column-right {
  padding-left: 1.5rem;
}

/* menu Content */
.menu-content {
  padding: 2rem 0;
}

.menu-header {
  margin-bottom: 3rem;
  text-align: left;
}

/* Center header for full-width layout */
.menu-content-full .menu-header {
  text-align: center;
}

.menu-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ecf0f1;
}

.menu-description {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0;
  color: #ecf0f1;
}

/* menu Items */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.menu-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  transform: translateX(10px);
}

.menu-item.touch-active {
  transform: translateX(5px);
}

/* Two-column layout hover effect */
.menu-column .menu-item:hover {
  transform: translateX(5px);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.item-name {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
  flex: 1;
  color: #ecf0f1;
}

.item-price {
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 1px;
  color: #af1917;
}

.item-description {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.5rem 0 1rem 0;
  font-weight: 300;
  color: #ecf0f1;
}

/* Dietary Information */
.dietary-info {
  display: none;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dietary-info.show {
  opacity: 1;
  max-height: 100px;
  display: flex !important;
}

.dietary-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  background-color: #981514;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Spice Level */
.spice-level {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.2rem;
}

.spice-icon {
  font-size: 1rem;
  color: #ff4444;
}

/* menu Images */
.menu-image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-image-fallback {
  background: linear-gradient(135deg, #af1917, #d4af37);
}

/* menu Navigation */
.desktop-nav {
  background: var(--ctr-background);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 70px;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.menu-nav-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu-nav-item {
  margin: 0;
  color: var(--clr-light);
}

.menu-nav-link {
  color: var(--clr-light)!important;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  display: block;
}

.menu-nav-link:hover,
.menu-nav-link.active {
  color: var(--clr-light)!important;
}

.menu-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #af1917;
  transition: width 0.3s ease;
}

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

/* Mobile Navigation */
.mobile-nav-container {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  background-color: #af1917;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.nav-toggle-icon {
  font-size: 1.2rem;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  left: 2rem;
  bottom: 8rem;
  background: var(--ctr-background);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  min-width: 250px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateY(0) scale(1);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-header h3 {
  color: #ecf0f1;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #af1917;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-nav-close:hover {
  background-color: rgba(175, 25, 23, 0.1);
}
#mobile-nav-toggle:hover{
  background-color: #981514!important;
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  display: block;
  color: #af1917;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  transition: opacity 0.25s ease, transform 0.4s ease;
  text-align: center;
  border: 1px solid transparent;
   opacity: 1;
  pointer-events: auto ;
  transform: translateY(0);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(175, 25, 23, 0.1);
  border-color: rgba(175, 25, 23, 0.3);
  color: #af1917;
}

/* Dietary Toggle Button */
.dietary-toggle-container {
  position: fixed;
  bottom: 5.5rem;
  right: 20rem;
  z-index: 1000;
}

.dietary-toggle-btn.transparent {
  opacity: 0;
    transform: translateY(20px); /* slight slide effect */
    pointer-events: none; /* makes it unclickable while hidden */

}

.dietary-toggle-btn {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    font-size: clamp(15px, 2vw, 20px);
  border: 2px solid black;
  border-radius: 50px;
  background-color: black;
  font-family: Arial, sans-serif;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: fixed;
  z-index: 1000;
  text-decoration: none;
    right: clamp(20px, 5vw, 50px);
    bottom: clamp(20px, 5vw, 50px);
   text-decoration: none;
}

.dietary-toggle-btn svg {
  fill: white;
  transition: fill 0.3s ease;
}

.dietary-toggle-btn:hover {
  transform: translateY(-2px);
  background-color: black;
  color: white;
  text-decoration: underline !important;
}

.dietary-toggle-btn:hover svg {
  fill: white;
}

.dietary-toggle-btn.transparent {
  opacity: 0;
  pointer-events: none;
}

.dietary-toggle-btn.inverted {
  background-color: white;
  color: black;
  border-color: white;
}

.dietary-toggle-btn.inverted svg {
  fill: black;
}

.dietary-toggle-btn.inverted:hover {
  background-color: white;
  color: black;
  transform: translateY(-2px);
  text-decoration: underline !important;
}

.dietary-toggle-btn.inverted:hover svg {
  fill: black;
}

.dietary-toggle-btn.active {
  background-color: #2c2c2c;
}

.toggle-icon {
  font-size: 1.2rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .menu-container {
    max-width: 90%;
    padding: 0 1.5rem;
  }

  .desktop-layout {
    gap: 3rem;
  }

  .menu-items-two-column {
    gap: 3rem;
  }

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

  .menu-description {
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-container {
    display: block;
  }

  .desktop-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Reset order for mobile */
  .zigzag-reverse .desktop-layout .menu-content,
  .zigzag-reverse .desktop-layout .menu-image {
    order: unset;
  }

  /* Stack columns on mobile */
  .menu-items-two-column {
    flex-direction: column;
    gap: 2rem;
  }

  /* Hide the center divider on mobile */
  .menu-items-two-column::before {
    display: none;
  }

  .menu-column-left,
  .menu-column-right {
    padding: 0;
    border: none;
  }

  .menu-column-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 1rem;
  }

  .menu-section {
    padding: 3rem 0;
  }

  .menu-container {
    padding: 0 1rem;
  }

  .menu-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .menu-title {
    font-size: 1.8rem;
  }

  .menu-description {
    font-size: 1rem;
    text-align: center;
  }

  .menu-image {
    height: 300px;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .item-name {
    font-size: 1.2rem;
  }

  .item-price {
    font-size: 1.1rem;
    align-self: flex-end;
  }

  .menu-item:hover,
  .menu-column .menu-item:hover {
    transform: none;
  }

  .dietary-toggle-container {
    bottom: 1rem;
    right: 1rem;
  }

  .dietary-toggle-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .mobile-nav-container {
    bottom: 1rem;
    left: 1rem;
  }

  .mobile-nav-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .mobile-nav-content {
    bottom: 6rem;
    left: 1rem;
    right: 1rem;
    min-width: auto;
    max-width: 300px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .menu-section {
    padding: 2rem 0;
  }

  .menu-container {
    padding: 0 0.5rem;
  }

  .menu-title {
    font-size: 1.5rem;
  }

  .menu-description {
    font-size: 0.9rem;
  }

  .menu-items,
  .menu-column {
    gap: 1.5rem;
  }

  .menu-item {
    padding-bottom: 1.5rem;
  }

  .item-name {
    font-size: 1.1rem;
  }

  .item-price {
    font-size: 1rem;
  }

  .item-description {
    font-size: 0.9rem;
  }

  .menu-image {
    height: 250px;
  }

  .mobile-nav-link {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .mobile-nav-content {
    bottom: 5rem;
  }

  .dietary-toggle-btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  .dietary-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .spice-icon {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
  .menu-title {
    font-size: 1.3rem;
  }

  .item-name {
    font-size: 1rem;
  }

  .item-price {
    font-size: 0.9rem;
  }

  .item-description {
    font-size: 0.8rem;
  }

  .menu-nav-link {
    font-size: 0.9rem;
  }

  .dietary-toggle-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .menu-item:hover,
  .menu-column .menu-item:hover {
    transform: none;
  }

  .menu-image:hover {
    transform: none;
  }

  .dietary-toggle-btn:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .mobile-nav-btn:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .menu-nav-link:hover,
  .mobile-nav-link:hover {
    opacity: 1;
  }

  .mobile-nav-close:hover {
    background-color: transparent;
  }

  /* Enhanced touch targets */
  .menu-nav-link,
  .mobile-nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dietary-toggle-btn,
  .mobile-nav-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .mobile-nav-close {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
  .menu-section {
    padding: 2rem 0;
  }

  .menu-title {
    font-size: 1.6rem;
  }

  .menu-image {
    height: 200px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .menu-image {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .menu-item,
  .menu-image,
  .dietary-toggle-btn,
  .menu-nav-link,
  .dietary-info {
    transition: none;
  }

  .menu-item:hover,
  .menu-item.touch-active,
  .menu-column .menu-item:hover {
    transform: none;
  }

  .menu-image:hover {
    transform: none;
  }

  .dietary-toggle-btn:hover {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.menu-nav-link:focus,
.mobile-nav-link:focus,
.dietary-toggle-btn:focus,
.mobile-nav-btn:focus,
.mobile-nav-close:focus {
  outline: 2px solid #af1917;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .desktop-nav,
  .mobile-nav-container,
  .dietary-toggle-container {
    display: none;
  }

  .menu-section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  .menu-item {
    break-inside: avoid;
    margin-bottom: 1rem;
  }

  .dietary-info {
    display: flex !important;
    opacity: 1 !important;
    max-height: none !important;
  }

  .menu-image {
    height: 200px;
  }

  /* Print two-column layout */
  .menu-items-two-column {
    display: flex;
    gap: 2rem;
  }

  .menu-column {
    flex: 1;
    break-inside: avoid;
  }
}
/* Smooth scroll for navigation */
html {
  scroll-behavior: smooth;
}
/*
Reservations Page
 */

.reservation h1 {
  margin-top: 0;
}

/* Enhanced booking form - IMPROVED */

.reservation form {
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: flex-end;
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 0 auto;
  justify-content: center;
}

.reservation form > div {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.reservation label {
  font-size: .875rem;
  margin-bottom: .5rem;
  font-weight: 600;
}

.reservation input,
.reservation button {
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.reservation input {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #e1e5e9;
}

.reservation input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(175, 25, 23, 0.1);
}

.reservation button {
  cursor: pointer;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.875rem 2rem;
  min-height: 30px;
  transition: all 0.2s ease;
}

.reservation button:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-1px);
}

.reservation button:active {
  transform: translateY(0);
}

/* time-slot grid - UNCHANGED */
.reservation #timeslots {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  margin-left: 20%;
  margin-right: 20%;
  gap: var(--space-lg);
}

.reservation .slot {
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: .75rem .5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .1s;
}

.reservation .slot[data-disabled="true"] {
  opacity: .35;
  cursor: not-allowed;
  background: var(--clr-primary-dark)!important;
  pointer-events: none;
}

.reservation .slot:not([data-disabled="true"]):hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  cursor: pointer;
}

/* confirmation / error banner */
.reservation #message {
  margin-top: 3rem;
  font-weight: bold;
  text-align: center;
}

/* ─── modal overlay ─────────────────────────── UNCHANGED */
.reservation .modal-overlay:not([hidden])  {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100010;
}

.reservation .modal-overlay[hidden] { display: none; }

.reservation .modal {
  background: var(--ctr-background);
  border-radius: var(--radius-md);
  padding: .25rem;
  width: 95%;
  max-width: 420px;
  max-height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation .modal h2 {
  margin-top: 0.1rem;
  font-weight: 350;
  text-align: center;
}

.reservation .modal form > div {
  margin-bottom: .1rem;
  display: flex;
  flex-direction: column;
}

.reservation .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
}

.reservation .modal-actions button:first-child {
  background: #777;
}

.reservation .modal-actions button:first-child:hover {
  background: #666;
}

.reservation .modal input::placeholder,
.reservation .modal textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* FIXED: Number input with correct button order */
.number-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
min-width: 40px!important;
}

.number-input input[type=number] {
  width: 4.2em;
  padding: 0.5em;
  border: 0.2em solid #af1917;
  border-radius: 1em;
  text-align: center;
  color: white;
  background: black;
  appearance: textfield;
  order: 2; /* Input in the middle */
}

.number-input .plus {
  order: 1; /* Plus button on top */
}

.number-input .minus {
  order: 3; /* Minus button on bottom */
}

/* Remove native number input arrows */
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input button {
  background: #af1917;
  color: white;
  border: none;
  border-radius: 0.3em;
  padding: 0.1em 0.8em;
  font-size: 1em;
  line-height: .1em;
  cursor: pointer;
  transition: background 0.3s;
  min-width: 3.2em;
  max-height: 1.2em!important;
  height: 1.2em!important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:6px;
}
.number-input button:hover {
  background: var(--clr-primary-dark);
}

/* ENHANCED: Date input styling */
input[type="date"] {
  border: .2em solid #af1917;
  padding: .8em .9em;
  border-radius: 2em;
  color: white;
  background: black;
  font-size: 1rem;
  min-width: 180px;
  position: relative;
}

/* Enhanced Date Input Styling - Black Background */
input[type="date"] {
  border: .2em solid #af1917;
  padding: .8em .9em;
  border-radius: 2em;
  color: white !important;
  background: black !important;
  background-color: black !important;
  font-size: 1rem;
  min-width: 180px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Force black background on all states */
input[type="date"]:focus,
input[type="date"]:active,
input[type="date"]:hover {
  background: black !important;
  background-color: black !important;
}

/* Webkit-specific styling for date input components */
input[type="date"]::-webkit-datetime-edit {
  color: white !important;
  background: transparent !important;
  padding: 0 0.3em;
}

input[type="date"]::-webkit-datetime-edit-text {
  color: white !important;
  background: transparent !important;
  padding: 0 0.3em;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  color: white !important;
  background: transparent !important;
}

/* Style the calendar picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  background-color: #af1917;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  filter: invert(1);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: #981514;
}

/* Firefox-specific styling */
input[type="date"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Focus styles */
input[type="date"]:focus {
  outline: none;
  border-color: var(--clr-light);
  box-shadow: 0 0 0 3px rgba(175, 25, 23, 0.3);
  background: black !important;
}

/* Ensure placeholder text is visible on black background */
input[type="date"]::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Additional override for any conflicting styles */
.reservation input[type="date"] {
  background: black !important;
  background-color: black !important;
  color: white !important;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  input[type="date"] {
    min-width: 100%;
    background: black !important;
    background-color: black !important;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}


.reservation .terms-checkbox label {
  font-size: 0.7rem;
}
#searchForm{
  justify-items: center;
  align-items: center;
}
#searchForm .inputlabel{
  transform: translateY(-14px);
}
.reservation .terms-checkbox {
  display: flex;
  max-width: 80%;
  flex-direction: row!important;
}

.reservation .terms-checkbox #acceptTerms {
  max-width:15px!important;
  width:15px!important;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Enhanced form for mobile - IMPROVED */
  .reservation form {
    max-width: 95%;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0.5rem;
    margin-top: 1%
  }

  .reservation .terms-checkbox label {
    font-size: 0.7rem;
  }

  .reservation .terms-checkbox {
    display: flex;
    flex-direction: row!important;
  }

  .reservation .terms-checkbox #acceptTerms {
    max-width:20px!important;
    width:20px!important;
  }

  .reservation form > div {
    width: 100%;
    max-width: 300px;
    gap: 0;
  }

  .reservation label {
    font-size: .9rem;
    margin-bottom: .5rem;
    text-align: left;
  }

  .reservation input,
  .reservation button {
    padding: .5rem .7rem;
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    gap: 0;
  }

  .reservation button {
    margin-top: 0.5rem;
    padding: 1rem 2rem;
  }
    .number-input {
    flex-direction: row !important;
    align-items: center!important;
    justify-content: center;

    min-width: auto !important;
    width: 100%;
    max-width: 200px;
  }

  .number-input input[type=number] {
    width: 4em;
    order: 2; /* Input stays in the middle */
    margin: 0 0.5em;
  }

  .number-input .minus {
    order: 1 !important; /* Minus button on the left */
  }

  .number-input .plus {
    order: 3 !important; /* Plus button on the right */
  }

  .number-input button {
    min-width: 2.5em;
    width: .5em!important;
    height: 2.5em;
    max-height: 2.5em !important;
    margin: 0;
    font-size: 1.2em;
    line-height: 2.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Timeslots for mobile - UNCHANGED */
  .reservation #timeslots {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    margin-left: 5%;
    margin-right: 5%;
    gap: var(--space-lg);
  }

  .reservation h2 {
    margin-top: 0;
    font-size: 1.5rem;
  }

  /* Mobile date input adjustments */
  input[type="date"] {
    min-width: 100%;
  }
}

/* Extra small screens - form only */
@media (max-width: 480px) {
  .reservation form {
    max-width: 98%;
    padding: 0.75rem 0.25rem;
  }

  .reservation form > div {
    max-width: 280px;
  }
}
/*
Admin views
 */

/*
contact Formular
 */

.contact_formular {
  margin-left: 6%;
  margin-right: 6%;
  display: flex;
  margin-top: 5rem;
  margin-bottom: 5rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xxl);
  padding: var(--space-lg);
  flex-wrap: wrap;
  color: var(--clr-light);

}
.contact_formular > div {
  flex: 1 1 20%;
  min-width: 280px;

}
.contact_formular .left {
  display: flex;
  flex-direction: column;
}
.contact_formular .left .mt-2  {
  margin-top: 2rem;
}
.contact_formular .form-control {
   background: transparent;
  color: var(--clr-light);
  font-size: var( --fs-h5);

  margin-right: 10%;
  min-width: 100%;
  margin-top: 1rem;
}
.mb-3.border-bottom  {
  position: relative;
  top: 0.4rem;
  margin-bottom: .4rem;
}
.contact_formular .border-bottom2 textarea{
  border: 1px #888 solid;
  padding: 1rem;
}

.contact_formular .submit-button{
  margin-top: 1rem;
  margin-left: 1rem;
}




.contact_formular .middle {
  display: flex;
  flex-direction: column;
}
.contact_formular .middle .mt-1 {
  margin-bottom: 1rem;
}
.contact_formular .middle .hours  {
  margin-bottom: 10px;
}

.contact_formular .middle .mt-2  {
  margin-top: 1rem;
}





.contact_formular .right {
  display: flex;
  flex-direction: column;
}
.contact_formular .right .mt-1 {
  margin-top: 1rem;
}
.contact_formular .right .mt-2  {
  margin-top: 5px;
}

.contact_formular .right .mt-3  {
  margin-top: 3rem;
}
.border-bottom {

border-bottom: 1px solid #888;
border-top: 0}



.border-bottom::after  {
border: 0;
  border-right: 0;
}
.form-control{
  border: 0;
  resize: none;
}

.form-control:focus{
  border: 0;
    outline: none;
  box-shadow: none;
}

.contact_formular .form-control#message {
  /* prevent the user from manually dragging */
  resize: none;
  /* hide the vertical scrollbar */
  font-size: var(--fs-h5);
  overflow: hidden;
}
.mb-3.border-bottom {
  border-bottom: 1px solid #888;
  transition: border-color 0.2s;
}
.mb-3.border-bottom:focus-within {
  border-bottom-color:  var(--clr-light) ;
}

/* Textarea container */
.contact_formular .border-bottom2 textarea {
  transition: border-color 0.2s;
}
.contact_formular .border-bottom2 textarea:focus-within {
  border-bottom-color:  var(--clr-light) ;
}


/*
Admin login view
 */
/* center the card vertically & horizontally */
.d-flex.justify-content-center.align-items-center.min-vh-100 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 50vh !important;
  padding: 1rem;
  margin-top: 7rem;
}

/* constrain card width and add soft shadow */
.d-flex.justify-content-center.align-items-center.min-vh-100 .card {
  width: 100%;
  max-width: 400px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* header styling */
.d-flex.justify-content-center.align-items-center.min-vh-100 .card-header {
  background-color: var(--clr-primary);
  color: #fff;
  text-align: center;
  border-bottom: none;
  padding: 1rem;

}

/* body padding */
.d-flex.justify-content-center.align-items-center.min-vh-100 .card-body {
  padding: 1.5rem;
  margin: 0 auto;
}

/* label spacing */
.d-flex.justify-content-center.align-items-center.min-vh-100 .form-label {
  font-weight: 500;
  padding: 1rem;
  font-size: 26px;
}

/* inputs */
.d-flex.justify-content-center.align-items-center.min-vh-100 .form-control {
  border-radius: 0.375rem;
  margin-left: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--ctr-background-light);
  color: var(--clr-light);
}

.d-flex.justify-content-center.align-items-center.min-vh-100 .form-control::placeholder{
  color: var(--clr-light);
  font-size: 14px;
}


/* footer link */
.d-flex.justify-content-center.align-items-center.min-vh-100 .card-footer {
  background: transparent;
  border-top: none;
   margin-top: -2rem;
  padding: 0.75rem;
}
.d-flex.justify-content-center.align-items-center.min-vh-100 .card-footer a {

  text-decoration: none;
  margin-left: 33%;

}
.d-flex.justify-content-center.align-items-center.min-vh-100 .card-footer a:hover {
  text-decoration: underline;
}

.login-button{
  margin-top: .5rem;
  scale: 80%;

}
/* make everything in the card-body stack and center */
.d-flex.justify-content-center.align-items-center.min-vh-100 .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;        /* ← centers children horizontally */
  text-align: center;         /* ← centers inline text (labels) */
}

/* nix the old left-margin on inputs and auto-space them */
.d-flex.justify-content-center.align-items-center.min-vh-100
  .card-body .form-control {
  margin: 0 auto 1.5rem;      /* auto-center + bottom spacing */
}

/*
legal.html
 */

.legal{
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-top: 10rem;
  color: black;
}

.legal h3{
  margin-bottom: 2rem;
}

.legal p{
  margin-bottom: 2rem;
   text-align: justify;
  text-justify: inter-word;
}

.legal ul{
  text-align: left;
  margin-bottom: 2rem;
}

/*
Mobile Design
 */

/*
Banner
 */

/* ─────────  Responsive overrides ───────── */

.banner {
  /* use desktop vars by default */
  min-height: var(--banner-height);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-inner {
  /* desktop width */
  width: var(--banner-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-text {
  font-size: var(--text-size);
  font-weight: var(--text-font-weight);
  line-height: var(--text-line-height);
  margin-bottom: var(--text-space-after);
  max-width: 40rem;
}

.banner-subtext {
  font-size: var(--fs-h3);
  font-weight: var(--subtext-font-weight);
  line-height: var(--subtext-line-height);
  margin-bottom: var(--subtext-space-after);
  max-width: 37rem;
}
.banner-divider {
  width: clamp(8rem, 80%, 30rem);   /* never smaller than 8 rem, never larger than 40 rem */
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .banner {
    /* swap in mobile height */
    min-height: var(--banner-height-sm);
  }
   .banner-inner {
    padding-inline: 1rem;
    max-width: 38rem;
  }
  .banner h1{font-size: var(--space-xl) !important;}
  .banner-text {
    /* smaller mobile text */
    font-size: var(--space-md) !important;
    margin-bottom: calc(var(--text-space-after) / 2);
  }
  .banner-subtext {
    font-size: var(--space-md) !important;
    margin-bottom: calc(var(--subtext-space-after) / 2);
  }
}


/*
Buttons
 */
/*  === MOBILE  ===  */
@media (max-width: 768px) {
  .trapez-button,
  .trapez-button-light {
    font-size: 1rem;
    padding: 0.6rem 1.8rem;
  }
}


@media (max-width: 1068px) {
  /* Override the grid layout for feature-card-2 */
  .feature-card-2 {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }

  /* Standard feature cards */
  .feature-card,
  .feature-card.image-right,
  .feature-card.image-left {
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    gap: var(--space-md, 1.5rem);
    grid-template-columns: none !important;
  }

  .feature-card .fc-img {
    order: 2 !important; /* Places image after text */
    width: 100% !important;
    min-height: 300px !important; /* Increased from 200px */
    max-height: none !important; /* Remove height restriction */
    height: 400px !important; /* Set a fixed height for consistency */
  }

  .feature-card .fc-body,
  .feature-card .fc-body-split {
    order: 1 !important; /* Places text first */
    width: 100% !important;
    padding: 0 1rem;
  }

  .feature-card .body_feature {
    max-width: 100% !important;
    width: 100% !important;
    margin: 1rem 0 !important;
  }

  /* Hide overlay images on mobile */
  .fc-inner-img-container {
    display: none !important;
  }
}

/* For smaller screens, still keep decent height */
@media (max-width: 480px) {
  .feature-card .fc-img {
    min-height: 250px !important;
    height: 300px !important; /* Smaller but still substantial */
  }
}

.faq_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 5vw, 40px) clamp(2%, 5%, 5%);
    min-height: 800px;
}
faq_h1 {
    font-size: clamp(3rem, 8vw, 84px);
    margin-bottom: clamp(20px, 4vw, 40px);
    text-align: center;
    width: 100%;
    max-width: 820px;
}

.faq {
    border-top: 1px solid black;
    width: 100%;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid black;
    cursor: pointer;
    padding: clamp(15px, 2vw, 20px) 0;
}

.faq-question {
    display: flex;
    align-items: center;
    font-size: clamp(18px, 3vw, 28px);
    text-transform: uppercase;
}

.faq-icon {
    font-size: clamp(30px, 5vw, 45px);
    line-height: 20px;
    margin-right: clamp(10px, 2vw, 20px);
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 clamp(20px, 5vw, 48px);
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.6;
    font-family: sans-serif;
    color: #333;
    transition: max-height 0.25s ease-out, opacity 0.2s ease-out, padding 0.25s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 15px clamp(20px, 5vw, 48px);
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in, padding 0.4s ease-in-out;
}

.faq-item.active .faq-icon {
    content: "×";
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in, padding 0.4s ease-in-out;
}

/* Button Styles */
.rounded-button-jl {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: black;
    border: 3px solid black;
    border-radius: 9999px;
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
    cursor: pointer;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.rounded-button-jl:hover {
    background-color: black;
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.rounded-button-jl:hover svg {
    fill: white;
}

.rounded-button-jl:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.overlay-text .rounded-button-jl {
    scale: 60%;
    color: white;
    margin-top: 1rem;
    border: white solid 3px;
    background: transparent;
}

/* Services Section */
.services-section {
    position: relative;
    margin-top: 5rem;
    padding: 0 clamp(2%, 5%, 5%);
}