* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FIX: white background + white text */
:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}


.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-weight: 600;
  cursor:pointer;
}

.btn.primary{
  border: none;
  background: linear-gradient(135deg, #c9a96a, #ead9aa);
  color:#111;
}

.heroRight{
  border-radius: 22px;
 /* overflow:hidden;*/
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
  position: relative;
}

.heroRight img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: center;
}

/* легка “плівка”, щоб виглядало дорожче */
.heroRight::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,0));
  pointer-events:none;
}

/* ===== SECTIONS ===== */
.section{
  padding: 34px 0;
}

.sectionTitle h2{
  margin:0 0 8px;
  font-size: 26px;
  letter-spacing: .2px;
}

.sectionTitle p{
  margin:0;
  color:#666;
  max-width: 70ch;
}

/* cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.card{
  grid-column: span 6;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.priceList{ list-style:none; padding:0; margin:0; }
.priceItem{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  align-items: center;
}
.priceItem:first-child{ border-top:0; }

.priceDesc{ color:#666; font-size: 13px; margin-top:4px; }

.priceValue{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  min-width: 64px;
  text-align:center;
  font-weight: 700;
}

/* WHY US */
.whyGrid .card{
  grid-column: span 4;
}
.card h3{ margin:0 0 8px; }
.muted{ color:#666; }

/* MOBILE */
@media (max-width: 900px){
  .heroRight{ 
    height: 320px; 
  }
  .card{ 
    grid-column: span 12; 
  }
  .whyGrid .card{ grid-column: span 12; }
}

/* Active menu link */
.navlinks a.active{
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.navlinks a.active:hover{
  transform: none;
}
/* CONTACT PAGE */
.contact-section {
  display: flex;
  justify-content: center;
  margin-top: 120px; /* ⬅️ головне */
  position: relative;
  z-index: 1;
}

.contact-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-card {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px 35px;
  max-width: 480px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-card p {
  margin: 10px 0;
}

.contact-card a {
  color: #c9a96a;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.studio-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-card ul {
  list-style-position: inside;
  padding-left: 0;
  padding-left: 18px;
}

.note {
  font-style: italic;
  opacity: 0.8;
}
/* CONTACT PAGE IMPROVEMENTS */

.contact-section {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px 40px;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(10px);
}

.contact-card h1 {
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-top: 30px;
}

.contact-card p,
.contact-card li {
  line-height: 1.6;
}

.contact-card ul {
  padding-left: 20px;
}

.contact-card a {
  color: #c9a96a;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}
/* ===== MOBILE (phones) ===== */
@media (max-width: 600px) {

  /* Загальні відступи */
  .container{
    width: min(1100px, 92vw);
  }

  /* Header */
  .header .nav{
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
    align-items: flex-start;
  }

  .navlinks{
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .navlinks a{
    padding: 8px 10px;
    border-radius: 12px;
  }

  /* Заголовки */
  h1 {
  font-size: 32px;      /* було занадто велике */
  line-height: 1.2;
  margin-bottom: 14px;
}
  h2{ font-size: 26px; }
  .badges{
    flex-wrap: wrap;
    gap: 8px;
  }

  /* PRICES */
  .grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card{
    padding: 18px 18px;
  }

  .priceItem{
    gap: 10px;
  }

  .priceValue{
    min-width: auto;
    padding: 4px 8px;
    border-radius: 12px;
  }

  /* CONTACTS */
  .contact-section{
    margin-top: 30px;
  }

  .contact-card{
    padding: 20px 18px;
    border-radius: 18px;
  }

  /* Footer */
  .footer{
    padding: 18px 0;
  }
}
/* ===== BURGER MENU ===== */
.burger{
  display:none;
  width:42px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  cursor:pointer;
  padding:10px;
}

/* mobile behavior */
@media (max-width: 700px){
  .burger{ display:block; }

  .header .nav{
    align-items:flex-start;
    gap:12px;
  }

  .navlinks{
    width:100%;
    display:block;
   /* overflow:hidden;*/
    max-height:0;
    opacity:0;
    transform: translateY(-6px);
    transition: max-height .25s ease, opacity .2s ease, transform .2s ease;
  }

  .navlinks a{
    display:block;
    padding:10px 12px;
    border-radius:14px;
    margin:6px 0;
  }

  .header.menu-open .navlinks{
    max-height: 260px;
    opacity:1;
    transform: translateY(0);
  }

  /* animate burger into X */
  .header.menu-open .burger span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .header.menu-open .burger span:nth-child(2){
    opacity:0;
  }
  .header.menu-open .burger span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* ===== NAV OVERLAY ===== */
.navOverlay{
  display:none;
}

@media (max-width: 700px){
  .navOverlay{
    display:none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 5;
  }
/* коли меню відкрите */
.menu-open .navOverlay{
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 5;
}
  /* важливо: header має бути над overlay */
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 64px;            /* можеш змінити */
  display: flex;
  align-items: center;

  background: #000;
  z-index: 99999;          /* щоб нічого не перекривало */
}

  /* меню (navlinks) теж над overlay */
  .navlinks{
    position: relative;
    z-index: 11;
  }

  .header.menu-open ~ .navOverlay{
    opacity: 1;
    pointer-events: auto;
  }
}
/* ===== GOOGLE MAP ===== */
.map-wrapper{
  max-width: 520px;
  margin: 24px auto 24px;
}

.map-wrapper iframe{
  width: 100%;
  height: 220px;   /* ← ОЦЕ КЛЮЧОВЕ */
  border-radius: 14px;
  border: 0;
  display: block;
}

.contact-section{
  display: block !important;
}
/* FORCE CONTACT LAYOUT */
.contact-section{
  display: block !important;
}

.contact-card{
  position: relative;
  margin: 0 auto;
}
/* CONTACT PAGE */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 35px;
  max-width: 520px;
  backdrop-filter: blur(10px);
}
/* FORCE контакти зверху, карта знизу */
.contact-section{
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
  align-items: center !important;
}

.contact-card{
  width: min(520px, 92vw) !important;
}

/* Hide Google Maps overlay controls */
.map-wrapper iframe {
  pointer-events: none;
}

.map-wrapper {
  position: relative;
}

.map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
}


.contact-section{
  padding-top: 110px !important; /* саме padding, щоб точно спрацювало */
  position: relative !important;
  z-index: 1 !important;
}
.map-wrapper {
  position: relative;
  max-width: 480px;     /* як contact-card */
  width: 100%;
  height: 320px;        /* ФІКСОВАНА ВИСОТА */
  border-radius: 18px;
  /* overflow: hidden; */
  background: #2a2a2a;
}

/* сама карта */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) brightness(0.9); /* темна карта */
}

/* кнопка прокласти маршрут */
.map-button {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  z-index: 10;
}

.map-button:hover {
  background: rgba(0,0,0,0.9);
}

.logo-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}
/* ===== HEADER ===== */
.top-header {
  background: #000;
  padding: 14px 0;
}
.logo {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary{
  background: #c8a56a;
  color: #1a1a1a;
}

.btn-outline{
  background: transparent;
  border: 2px solid #c8a56a;
  color: #1a1a1a;
}

/* мобілка */
@media (max-width: 480px){}
.services {
  padding: 100px 16px;
  background: #f6f6f4;
}

.services-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 8px;
}

.services-subtitle {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

.service-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 32px;
  margin-bottom: 48px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-block h3 {
  margin-bottom: 22px;
  font-size: 22px;
}

.service-block ul {
  list-style: none;
}

.service-block li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}

.service-block li:last-child {
  border-bottom: none;
}

.extra-services {
  margin-top: 28px;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.note {
  margin-top: 24px;
  font-style: italic;
  opacity: 0.85;
}
.why-us {
  padding: 100px 16px;
  background: #ffffff;
}

.why-us-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 10px;
}

.why-subtitle {
  margin-bottom: 60px;
  opacity: 0.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.why-card {
  background: #f6f6f4;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.why-card p {
  line-height: 1.6;
  opacity: 0.85;
}
.opening-hours {
  padding: 90px 16px;
  background: #f6f6f4;
}

.opening-wrapper {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.opening-hours h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 8px;
}

.opening-note {
  margin-bottom: 32px;
  opacity: 0.8;
}

.hours-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.day-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}

.day-row:last-child {
  border-bottom: none;
}
.booking{
  padding: 120px 16px;
  background: #f7f7f7;
}

.booking-wrap{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;

  background: #f6f6f4;
  border-radius: 18px;
  padding: 42px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.booking h2{
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 10px;
}

.booking-sub{
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 22px;
}

.booking-btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;

  background: #c8a56a;
  color: #1a1a1a;
  transition: transform .15s ease, opacity .15s ease;
}

.booking-btn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

.booking-note{
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.75;
}
.booking-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-instagram{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #fff;
}

.booking-whatsapp{
  background: #25d366;
  color: #fff;
}

.booking-instagram:hover,
.booking-whatsapp:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}
.contact{
  padding: 55px 16px 45px;  /* було більше */
  background: #ffffff;
}

.contact-wrap{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact h2{
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 6px;
}

.contact-sub{
  opacity: 0.8;
  margin-bottom: 28px;
}

/* кнопки */
.contact-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn{
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  background: #ffffff;
  color: #1a1a1a;

  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);

  transition: all .25s ease;
}

/* subtle hover = luxury */
.contact-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

/* кольори дуже стримані */
.contact-btn.instagram{
  border-color: #c8a56a;
}

.contact-btn.whatsapp{
  border-color: #9fcfa9;
}
.footer{
  padding: 28px 16px 34px;
  background: #f6f6f4;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-wrap{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-actions{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  margin-bottom: 12px;
}

.footer-link{
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.footer-dot{
  opacity: 0.35;
}

.footer-copy{
  margin: 0;
  font-size: 13px;
  opacity: 0.75;
}
header.scrolled{
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.top-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  z-index: 99999;

  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* текст в шапці */
.top-header .logo,
.top-header .nav a{
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.top-header .nav{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-header .nav a{
  font-size: 14px;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.top-header .nav a:hover{
  opacity: 1;
}
.top-header.scrolled{
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.map-wrapper{
  max-width: 600px;          /* ⬅️ ще компактніше */
  margin: 18px auto 18px;    /* ⬅️ ідеально по центру */
  border-radius: 14px;
  /* overflow: hidden; */

  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  background: #f2f2f2;

  position: relative;
  pointer-events: auto;      /* ⬅️ ДУЖЕ ВАЖЛИВО */
}

.map-wrapper iframe{
  width: 100%;
  height: 180px;             /* ⬅️ МЕНША ВИСОТА */
  border: 0;

  pointer-events: auto;      /* ⬅️ щоб карта була клікабельна */
  display: block;
}
.map-title{
  text-align: center;
  margin-top: 40px;
  margin-bottom: 12px;
  font-weight: 500;
  opacity: 0.8;
}
.map-link{
  display: block;
  text-decoration: none;
}
.map-wrapper{
  max-width: 520px;
  margin: 24px auto 24px;
}

.map-wrapper iframe{
  width: 100%;
  height: 220px;   /* ← ОЦЕ КЛЮЧОВЕ */
  border-radius: 14px;
  border: 0;
  display: block;
}
.map-wrapper{
  height: auto;
  min-height: unset;
}
/* =========================
   MOBILE (до 768px)
   ========================= */
@media (max-width: 768px){

  /* Загальні відступи */
  section{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Шапка */
  .top-header .header-container{
    padding: 10px 14px;
    gap: 10px;
  }

  .top-header .logo{
    font-size: 14px;
    white-space: nowrap;
  }

  /* Меню — переноситься в 2 рядки, щоб не розлазилось */
  .top-header .nav{
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .top-header .nav a{
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 999px;
  }


  /* Services (ціни) — менші паддінги */
  .service-block{
    padding: 24px 18px;
    border-radius: 16px;
  }

  .service-block h3{
    font-size: 18px;
  }

  .service-block li{
    gap: 10px;
    font-size: 14px;
  }

  /* Why-us (переваги) — 1 колонка */
  .why-grid{
    grid-template-columns: 1fr !important;
  }

  .why-card{
    padding: 22px 18px;
    border-radius: 16px;
  }

  /* Opening hours */
  .opening-wrapper{
    max-width: 520px;
  }

  .hours-card{
    padding: 18px 16px;
    border-radius: 16px;
  }

  .day-row{
    font-size: 14px;
  }

  /* Booking */
  .booking-wrap{
    padding: 26px 18px;
    border-radius: 16px;
  }

  .booking-btn{
    width: 100%;
    max-width: 320px;
  }

  /* Contact */
  .contact-wrap{
    max-width: 520px;
  }

  .contact-actions{
    gap: 12px;
  }

  .contact-btn{
    width: 100%;
    max-width: 320px;
  }

  /* Карта */
  .map-wrapper{
    max-width: 92vw;
    margin: 18px auto 18px;
    border-radius: 14px;
  }

  .map-wrapper iframe{
    height: 200px;
  }

  /* Footer */
  .footer{
    padding: 18px 16px 22px;
  }
}


/* =========================
   SMALL MOBILE (до 420px)
   ========================= */
@media (max-width: 420px){

  .top-header .nav a{
    font-size: 12px;
    padding: 5px 7px;
  }

  .hero h1{
    font-size: 36px;
  }

  .map-wrapper iframe{
    height: 180px;
  }
}

html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body{
  padding-top: 64px; /* висота top-header */
}

.top-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0b0b0b; /* чорна */
}
:root { --header-h: 64px; }  /* можеш змінити 56/60/70 під свій вигляд */

body{
  padding-top: var(--header-h);
}
:root { --header-h: 64px; }  /* висота шапки */

html{
  scroll-padding-top: var(--header-h);
}

body{
  margin: 0;
  padding-top: var(--header-h); /* щоб контент не залазив під fixed header */
  overflow-x: hidden;
}

/* HERO (єдиний правильний) */
.hero{
  min-height: calc(100vh - var(--header-h));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px 16px;       /* норм для моб + десктоп */
  background-image: url("./bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* карточка */
.hero-card{
  width: min(880px, 92vw);
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;

  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

.hero-card h1{
  margin: 0 0 14px;
  font-size: clamp(38px, 7vw, 72px);
  letter-spacing: 2px;
  line-height: 1.05;
}

.hero-card p{
  max-width: 560px;
  margin: 0 auto 26px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* мобілка */
@media (max-width: 480px){
  .hero-card{ padding: 34px 18px; border-radius: 16px; }
  .hero-buttons .btn{ width: 100%; max-width: 320px; }
}
/* 🔥 FIX: hero НІКОЛИ не fixed */
.hero{
  position: relative !important;
}
/* ========== BURGER MENU (MOBILE) ========== */

/* desktop by default */
.nav-desktop { display: flex; }

/* burger hidden on desktop */
.burger{
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* overlay */
.navOverlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}

/* mobile menu drawer */
.navMobile{
  display: none;
  position: fixed;
  top: var(--header-h, 64px);
  right: 12px;
  left: 12px;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  z-index: 9999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}

.navMobile a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.92;
}

.navMobile a:hover{
  background: rgba(255,255,255,0.08);
  opacity: 1;
}

/* open state */
.menu-open .navOverlay{
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.menu-open .navMobile{
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-open .burger span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.menu-open .burger span:nth-child(2){
  opacity: 0;
}
.menu-open .burger span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* ====== MOBILE breakpoint ====== */
@media (max-width: 768px){
  .nav-desktop{ display: none; }
  .burger{ display: inline-flex; }
}
@media (max-width: 768px){
  .top-header .nav-desktop{
    display: none !important;
  }
  .top-header .burger{
    display: inline-flex !important;
  }
}
.burger{
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.burger{
  display:none;
  width:42px; height:42px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius:12px;
  cursor:pointer;
  padding:10px;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

/* мобілка: ховаємо верхні лінки, показуємо бургер */
@media (max-width: 768px){
  .nav-desktop{ display:none !important; }
  .burger{ display:flex !important; }
}
.navOverlay{ display:none; }
.navMobile{ display:none; }

@media (max-width: 768px){
  .navOverlay{
    display:block;
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.45);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease;
    z-index: 9998;
  }

  .navMobile{
    display:block;
    position:fixed;
    top:64px;
    left:12px;
    right:12px;
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    padding:10px;
    transform: translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition: .2s ease;
    z-index: 9999;
  }

  .navMobile a{
    display:block;
    padding:12px 12px;
    color:#fff;
    text-decoration:none;
    opacity:.9;
    border-radius:10px;
  }
  .navMobile a:hover{ background: rgba(255,255,255,.06); }
}

.menu-open #mobileNav { 
  transform: translateX(0); 
}
.menu-open #navOverlay { 
  opacity: 1; 
  pointer-events: auto; 
}
/* ===== Burger базово прихований на ПК ===== */
.burger { display:none; }

/* ===== Mobile menu UI ===== */
@media (max-width: 768px){
  .top-header .nav { display:none; }     /* ховаємо звичайне меню */
  .burger { display:inline-flex; }      /* показуємо бургер */
}

/* Бургер кнопка */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  cursor: pointer;

  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap: 6px;

  position: relative;
  z-index: 100002; /* важливо: вище overlay */
}
/* Overlay */
.navOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 100000;
}

/* Виїжджаюче меню */
.mobileNav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 320px);
  background: #0b0b0b;
  padding: 80px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;

  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 100001;
}
.mobileNav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  opacity:.9;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

/* ВІДКРИТТЯ */
.menu-open .navOverlay{
  opacity: 1;
  pointer-events: auto;
}
.menu-open .mobileNav{
  transform: translateX(0);
}

/* Анімація бургера в хрестик */
.menu-open .burger span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.menu-open .burger span:nth-child(2){ opacity: 0; }
.menu-open .burger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
/* BURGER ICON (force visible) */
.burger{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  border-radius: 12px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}

.burger{
  width: 44px;              /* ✅ ДОДАЛИ ширину */
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  cursor: pointer;

  display: flex;            /* ✅ щоб span стали в колонку */
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  padding: 10px;
  box-sizing: border-box;
}

.burger span{
  display: block;
  height: 2px;
  width: 100%;              /* тепер 100% від 44px */
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}
/* MOBILE: hide desktop menu, show burger */
@media (max-width: 768px){
  .nav-desktop{ display: none !important; }
  .burger{ display: grid !important; }
}
#navOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}
body.menu-open #navOverlay{
  opacity: 1;
  pointer-events: auto;
}

/* ===== DESKTOP ===== */
.nav-desktop{
  display: flex;
}

.burger{
  display: none;        /* ❌ ховаємо на ПК */
}

/* ===== MOBILE ===== */
/* ===== MOBILE HEADER ORDER FIX ===== */
@media (max-width: 768px){

  .header-container{
    display: flex;
    align-items: center;
  }

  .burger{
    display: flex !important;
    order: 1;              /* ⬅️ БУРГЕР ПЕРШИЙ */
    margin-right: 12px;
  }

  .logo{
    order: 2;              /* ⬅️ ЛОГО ПІСЛЯ БУРГЕРА */
  }

  .nav-desktop{
    display: none !important;
  }
}
:root { --header-h: 64px; }  /* якщо треба — потім змінимо */

.top-header{ height: var(--header-h); }
.header-container{ height: 100%; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero{
  height: 100vh;                 /* рівно весь екран */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: var(--header-h);  /* місце під fixed header */
  box-sizing: border-box;

  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* BURGER: default hidden on desktop */
.burger{
  display: none;            /* ✅ ключове */
  width: 44px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  gap: 6px;

  padding: 10px;
  box-sizing: border-box;
}

.burger span{
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px){
  .nav-desktop{ display: none !important; }
  .burger{ display: flex !important; }  /* ✅ показуємо тільки тут */
}
.opening-hours{
  position: relative;
  background-image: url("./bd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 16px;
  overflow: hidden;
}

/* ПРОЗОРИЙ ШАР */
.opening-hours::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.45); /* 👈 міняй прозорість тут */
  z-index: 0;
}

/* контент поверх фону */
.opening-hours > *{
  position: relative;
  z-index: 1;
}
/* header layout */
.header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MOBILE */
@media (max-width: 768px){
  .nav-desktop{ display: none !important; }

  .burger{
    display: flex !important;
    margin-right: 12px;
    flex: 0 0 auto;
  }

  .logo{
    flex: 1;
    text-align: center;
    margin: 0;
  }
}
body {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;

}
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
}

.header-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;   /* ОЦЕ прибере “прилипання” до країв */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.nav-desktop a{
  margin-left: 18px;
  white-space: nowrap;
}
