:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --primary: #d21f2b; /* warm red */
  --primary-hover: #b81822;
  --background-soft: #f8f9fb;
  --container: 1120px;
  --nav-h: 72px;

  --headline-font: "Playfair Display", serif;
  --headline-weight: 700;
  --headline-size: 3rem;
  --headline-line-height: 1.1;
  --headline-color: #1a1a1a;

  --subheadline-font: "Poppins", sans-serif;
  --subheadline-size: 0.9rem;
  --subheadline-weight: 500;
  --subheadline-spacing: 0.15em;
  --subheadline-color: #c21b1b;

  --headline-accent-color: var(--primary-color);
}

.section-light {
  background: var(--bg);
}

.section-soft {
  background: var(--background-soft);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.title{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: clamp(2.0rem, 4vw, 3.6rem);
  margin: 0;
  color: #0b0f1a;
}

.section-title{
  text-align: center;
  margin-bottom: 28px;
}

/* Header / Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--background-soft);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar{
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
max-width: var(--container);
margin: 0 auto;
padding-inline: clamp(8px, 2.5vw, 16px);
gap: clamp(8px, 2vw, 18px);

  gap: 18px;
}

.navbar ul,
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand{
  font-family: 'Amatic SC', cursive;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.5rem;
  white-space: nowrap;
  
  
}

.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  height: 40px;
  width: 44px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-right{
  display: flex;
  align-items: center;
   gap: clamp(8px, 1.8vw, 18px);
}

.nav-links{
  display: flex;
   gap: clamp(8px, 1.8vw, 18px);
  align-items: center;
}

.nav-link{
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 6px;
  position: relative;
  display: inline-block;
  white-space: nowrap;   /* prevents text wrapping */
}

/* Underline active nav item */
.nav-link.active::after{
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.nav-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select{
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn{
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary{
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover{
  background: var(--primary-hover);
}

/* Sections */
.section{
  padding: 72px 0;
  scroll-margin-top: calc(var(--nav-h) + 18px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
/* ---------- HERO (Home) ---------- */
.hero-bg{
  position: relative;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;

  /* Full screen minus sticky navbar */
  min-height: calc(100dvh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));

  /* Fallbacks */
  min-height: calc(100vh - var(--nav-h));
  height: calc(100vh - var(--nav-h));

  background-image: url("assets/img/background.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

/* Fade to the right (cleaner background on right) */
.hero-bg .hero-overlay{
  position: absolute;
  inset: 0;
  /* Left shows the image, right fades to white/very light */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.25) 60%,
    rgba(255,255,255,0.45) 80%,
    rgba(255,255,255,0.55) 100%
  );
  z-index: 1;
}

/* Layout */
.hero-inner{
  position: relative;
  z-index: 2; /* above overlay */
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 86px 0;
}

.hero-left{
  max-width: 560px;
}

.hero-title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b0f1a;
  line-height: 1.08;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  background: #f8c2c556;
  
}

.hero-subtitle{
  margin: 0 0 26px;
  font-weight: 900;
  color: #0b0f1a;
  font-size: 1.2rem;
  line-height: 1.7;
  background: #f8c2c575;
}

.hero-cta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Secondary button to match screenshot style */
.btn-secondary{
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}
.btn-secondary:hover{
  background: var(--primary-hover);
}

/* Right image floating animation */
.hero-right{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-float-img{
  width: min(520px, 100%);
  height: auto;
  will-change: transform;
  animation: floatY 4.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.18));
}
#home.section{
  padding: 0 !important;
  border-bottom: none;
}
@keyframes floatY{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}


/* ---------- ABOUT SECTION ---------- */

.about-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;  /* right side wider */
  gap: 40px;
  align-items: start;
}


.about-image-card{
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: #fff;
}

.about-image{
  width: 100%;
  height: clamp(500px, 60vh, 650px);
  object-fit: cover;
  display: block;
  border-radius: 6px;
}



.about-call-card{
  margin-top: 22px;
  border: 2px solid #d21f2b;
  border-radius: 6px;
  padding: 18px 16px;
  text-align: center;
  background: var(--background-soft);
}

.about-call-title{
  color: #d21f2b;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.about-call-number{
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.about-text p{
  margin: 0 0 16px;
  line-height: 1.75;
  color: rgba(15,23,42,0.88);
  font-size: 1rem;
}


/* ---------- MENU SECTION ---------- */

/* Categories */

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 50px;
}

.menu-category {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  padding: 6px 2px;
}

.menu-category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-color, #d21f2b);
  transition: 0.3s ease;
}

.menu-category.active::after {
  width: 100%;
}

/* Menu Grid */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */

.menu-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Fixed Image Size */

.menu-image {
  width: 100%;
  height: 350px;           /* fixed height */
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* prevents distortion */
}

/* Content */

.menu-content {
  padding: 18px;
}

.menu-name {
  font-weight: 700;
  margin-bottom: 6px;
}

.menu-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

.menu-price {
  font-weight: 700;
  color: #d21f2b;
}

/* Special layout for Salats and Snacks */
.menu-grid.gallery-mode {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;   /* keeps 1 image centered */
  gap: 24px;
}

.menu-grid.gallery-mode .menu-card {
  border: none;
  box-shadow: none;
  background: transparent;
}

.menu-grid.gallery-mode .menu-card:hover {
  transform: none;
  box-shadow: none;
}

.menu-grid.gallery-mode .menu-image {
  width: 100%;
  height: auto;              /* remove fixed height */
  overflow: visible;         /* don't crop image */
}

.menu-grid.gallery-mode .menu-image img {
  width: 100%;
  height: auto;              /* full image visible */
  display: block;
  object-fit: contain;       /* show full image */
  border-radius: 12px;
}

/* hide text in gallery mode */
.menu-grid.gallery-mode .menu-content {
  display: none;
}

/* mobile */
@media (max-width: 768px) {
  .menu-grid.gallery-mode {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}                        
/* ---------- GALLERY SECTION (Carousel like screenshot) ---------- */

.gallery-kicker{
  letter-spacing: 0.25em;
  font-weight: 700;
  color: #d21f2b;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.accent-red{ color: #d21f2b; }

.gallery-carousel{
  position: relative;
  margin-top: 26px;
}

.gallery-viewport{
  overflow: hidden;
  border-radius: 10px;
}

.gallery-track{
  display: flex;
  gap: 28px; /* space between images like screenshot */
  will-change: transform;
  transition: transform 350ms ease;
  padding: 8px 0;
}

.gallery-slide{
  flex: 0 0 calc((100% - 3 * 28px) / 4); /* 4 images visible desktop */
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.10);
}

.gallery-slide img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 44px;
  display: grid;
  place-items: center;
  z-index: 5;
}

.gallery-arrow.left{ left: -18px; }
.gallery-arrow.right{ right: -18px; }

.gallery-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.gallery-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(210,31,43,0.35);
  cursor: pointer;
}
.gallery-dot.active{
  background: rgba(210,31,43,1);
}

/* Responsive visible slides */
@media (max-width: 1100px){
  .gallery-slide{ flex-basis: calc((100% - 2 * 28px) / 3); } /* 3 visible */
}
@media (max-width: 820px){
  .gallery-slide{ flex-basis: calc((100% - 1 * 18px) / 2); }
  .gallery-track{ gap: 18px; }
  .gallery-arrow.left{ left: -10px; }
  .gallery-arrow.right{ right: -10px; }
}
@media (max-width: 520px){
  .gallery-slide{ flex-basis: 100%; } /* 1 visible */
  .gallery-slide img{ height: 300px; }
}

/* ---------- FULLSCREEN MODAL ---------- */
.gallery-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
}
.gallery-modal.active{ display: block; }

.gallery-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}

.gallery-modal-inner{
  position: relative;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal-viewport{
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.gallery-modal-track{
  display: flex;
  will-change: transform;
  transition: transform 350ms ease;
}

.gallery-modal-track .gallery-slide{
  flex: 0 0 100%;
  border: none;
  border-radius: 0;
}

.gallery-modal-track img{
  width: 100%;
  height: min(80vh, 720px);
  object-fit: contain;
  background: #000;
  cursor: grab;
}

.gallery-modal-close{
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
 
}

.gallery-modal-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 5;
}
.gallery-modal-arrow.left{ left: -20px; }
.gallery-modal-arrow.right{ right: -20px; }

.gallery-modal-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.gallery-modal-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(210,31,43,0.35);
  cursor: pointer;
}
.gallery-modal-dot.active{ background: var(--primary); }


/* ---------- EVENT PLANNING (carousel like screenshot) ---------- */

.events-carousel{
  position: relative;
  margin-top: 22px;
}

.events-viewport{
  overflow: hidden;
  border-radius: 14px;
}

.events-track{
  display: flex;
  gap: 26px;
  will-change: transform;
  transition: transform 350ms ease;
  padding: 8px 0;
}

.events-slide{
  position: relative;
  flex: 0 0 calc((100% - 2 * 26px) / 3); /* 3 visible desktop */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.events-slide img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* bottom overlay like screenshot */
.events-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
}

.events-card-title{
  margin: 0 0 6px;
  color: #fff;
  font-weight: 800;
  font-size: 1.85rem;
}

.events-card-sub{
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

/* arrows */
.events-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 30px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  z-index: 5;
}
.events-arrow.left{ left: 12px; }
.events-arrow.right{ right: 12px; }

/* dots */
.events-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.events-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(210,31,43,0.28);
  cursor: pointer;
}
.events-dot.active{
  background: rgba(210,31,43,1);
}

/* responsive */
@media (max-width: 980px){
  .events-slide{ flex-basis: calc((100% - 1 * 18px) / 2); }
  .events-track{ gap: 18px; }
  .events-slide img{ height: 380px; }
}
@media (max-width: 560px){
  .events-slide{ flex-basis: 100%; }
  .events-slide img{ height: 320px; }
}

h1{ font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 12px; }
h2{ font-size: 1.8rem; margin: 0 0 10px; }
p{ color: var(--muted); line-height: 1.6; margin: 0; }

.footer{
  padding: 24px 0;
}

/* ---------- RESERVE / BOOK A TABLE ---------- */

.reserve-card{
  display: grid;
  grid-template-columns: 0.95fr 1.45fr;
  background: var(--background-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  min-height: 420px;
}

.reserve-image-wrap{
  background: #f5f5f5;
}

.reserve-image{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.reserve-form-wrap{
  padding: 26px 28px;
  display: flex;
  align-items: center;
}

.reserve-form{
  width: 100%;
}

.reserve-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reserve-input,
.reserve-textarea{
  width: 100%;
  border: 1px solid rgba(15,23,42,0.20);
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 1rem;
  outline: none;
  background: var(--background-soft);
}

.reserve-input:focus,
.reserve-textarea:focus{
  border-color: rgba(210,31,43,0.55);
  box-shadow: 0 0 0 4px rgba(210,31,43,0.12);
}

.reserve-textarea{
  grid-column: 1 / -1; /* full width */
  resize: vertical;
  min-height: 140px;
}

.reserve-actions{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.reserve-btn{
  background: #d21f2b;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 44px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reserve-btn:hover{
  background: #b81822;
  transform: translateY(-1px);
}

.reserve-status{
  text-align: center;
  margin: 10px 0 0;
  color: rgba(15,23,42,0.75);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px){
  .reserve-card{
    grid-template-columns: 1fr;
  }
  .reserve-image{
    min-height: 280px;
  }
  .reserve-form-wrap{
    padding: 22px 18px;
  }
  .reserve-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .reserve-grid{
    grid-template-columns: 1fr;
  }
}


/* ---------- CONTACT SECTION ---------- */
.contact-map{
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: var(--background-soft);
  margin-bottom: 18px;
}

.contact-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  
}

.contact-card{
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: var(--background-soft);
  padding: 14px 14px;
}

.contact-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.contact-card-title{
  font-weight: 800;
  color: #0b0f1a;
  font-size: 0.95rem;
  
}

.contact-card-value{
  color: rgba(15,23,42,0.80);
  font-size: 0.92rem;
  line-height: 1.4;
}

.copy-btn{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,0.14);
  background: var(--background-soft);
  cursor: pointer;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.copy-btn:hover{
  border-color: rgba(210,31,43,0.55);
  box-shadow: 0 0 0 4px rgba(210,31,43,0.10);
}

/* Form card */
.contact-form-card{
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: var(--background-soft);
  padding: 14px;
}

.contact-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-input,
.contact-textarea{
  width: 100%;
  border: 1px solid rgba(15,23,42,0.18);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 1rem;
  outline: none;
  background-color: var(--background-soft);
  
}

.contact-input:focus,
.contact-textarea:focus{
  border-color: rgba(210,31,43,0.55);
  box-shadow: 0 0 0 4px rgba(210,31,43,0.10);
  
}

.contact-textarea{
  resize: vertical;
  min-height: 160px;
  
}

.contact-form-grid .full{
  grid-column: 1 / -1;
}

.contact-actions{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.contact-send-btn{
  background: #d21f2b;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 800;
  cursor: pointer;
}
.contact-send-btn:hover{
  background: #b81822;
}

.contact-status{
  text-align: center;
  margin: 10px 0 0;
  color: rgba(15,23,42,0.75);
  font-size: 0.95rem;
}

/* Toast bottom-left */
.copy-toast{
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: rgba(15,23,42,0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 4000;
}

.copy-toast.show{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 720px){
  .contact-cards{
    grid-template-columns: 1fr;
  }
  .contact-form-grid{
    grid-template-columns: 1fr;
  }
}

/* ---------- ORDER ONLINE ---------- */

.order-kicker{
  letter-spacing: 0.25em;
  font-weight: 700;
  color: #d21f2b;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.order-subtitle{
  margin: 0;
  color: rgba(15,23,42,0.80);
  font-size: 1.05rem;
}

/* Cards */
.order-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.order-card{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 14px;
  background: #fff;
  padding: 22px 18px;
  text-decoration: none;
  color: #0b0f1a;

  display: grid;
  place-items: center;
  gap: 14px;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.order-card:hover{
  transform: translateY(-4px);
  border-color: rgba(210,31,43,0.35);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.order-card img{
  height: 38px;
  width: auto;
  object-fit: contain;
}

.order-card span{
  font-weight: 800;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 980px){
  .order-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .order-grid{
    grid-template-columns: 1fr;
  }
}

/*********************************************************************************************
************************ Footer Section ******************************************************  
*********************************************************************************************/

/* ---------- FOOTER ---------- */
.site-footer{
  background: #1f1f22;
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.8fr;
  gap: 46px;
  align-items: start;
}

.footer-col{
  position: relative;
}

.footer-icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(210,31,43,0.55);
  color: #d21f2b;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.footer-title{
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.footer-text{
  margin: 0;
  line-height: 1.75;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}

.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(210,31,43,0.6);
  background: rgba(210,31,43,0.15);
}

.footer-bottom{
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-copy{
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.footer-copy strong{
  color: #fff;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 560px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: var(--primary) !important;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
  display: none; /* hidden by default */
}

#backToTop:hover {
  background-color: #ba1c1c;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }

  .nav-right{
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px 16px;
  }

  .nav-right.open{ display: flex; }

  .nav-links{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-actions{
    justify-content: flex-start;
  }

    .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 0;
  }

  .hero-right{
    order: 2;
  }

  .hero-left{
    order: 1;
    max-width: 680px;
  }

  .hero-float-img{
    width: min(460px, 100%);
  }

    .about-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-title{
    font-size: 2.2rem;
  }
}
