/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#07110d;
  color:#f4f7f5;
  overflow-x:hidden;
  padding-top:80px;
}

img,
video{
  max-width:100%;
  display:block;
}

/* =========================
   VARIABLES
========================= */

:root{
  --accent:#7fffd4;
  --accent-dark:#4fd7ae;
  --bg:#07110d;
  --card:#0d1814;
  --text:#f4f7f5;
  --muted:#b8c6c0;
}

/* =========================
   HEADER
========================= */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 45px;
  background:rgba(5,12,10,.65);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:9999;
}

.logo{
  font-family:'Playfair Display',serif;
  font-size:24px;
  letter-spacing:4px;
  color:#fff;
  text-transform:uppercase;
  text-decoration:none;
  transition:.3s;
}

.logo:hover{
  color:var(--accent);
}

/* =========================
   NAVIGATION
========================= */

header nav{
  display:flex;
  align-items:center;
  gap:35px;
}

header nav a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:.3s;
}

header nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.35s;
}

header nav a:hover{
  color:var(--accent);
}

header nav a:hover::after{
  width:100%;
}

/* =========================
   BURGER
========================= */

.burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  background:none;
  border:none;
  cursor:pointer;
  z-index:10001;
}

.burger span{
  width:28px;
  height:3px;
  background:#fff;
  margin:4px 0;
  border-radius:10px;
  transition:.35s;
}

.burger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.burger.active span:nth-child(2){
  opacity:0;
}

.burger.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

/* =========================
   OVERLAY
========================= */

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  opacity:0;
  visibility:hidden;
  transition:.35s;
  z-index:9998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.72)
  );
  z-index:2;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:950px;
  padding:20px;
}

.hero-subtitle{
  text-transform:uppercase;
  letter-spacing:4px;
  color:rgba(255,255,255,.75);
  margin-bottom:24px;
  font-size:14px;
}

.cinema-text{
  font-family:'Playfair Display',serif;
  font-size:72px;
  line-height:1.1;
  margin-bottom:28px;
  text-shadow:0 10px 35px rgba(0,0,0,.7);
}

.hero-text{
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,.82);
  max-width:760px;
  margin:auto;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 32px;
  border-radius:50px;
  text-decoration:none;
  transition:.35s;
  font-weight:600;
  border:none;
  cursor:pointer;
}

.btn-main{
  background:var(--accent);
  color:#07110d;
}

.btn-main:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(127,255,212,.18);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
}

.btn-secondary:hover{
  background:rgba(255,255,255,.08);
}

/* =========================
   SECTIONS
========================= */

.section{
  padding:120px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-title{
  font-family:'Playfair Display',serif;
  font-size:54px;
  text-align:center;
  margin-bottom:20px;
}

.section-text{
  max-width:760px;
  margin:auto;
  text-align:center;
  line-height:1.9;
  color:var(--muted);
  margin-bottom:70px;
}

/* =========================
   GRID / CARDS
========================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:var(--card);
  transition:.4s;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:1s;
}

.card:hover img{
  transform:scale(1.08);
}

.card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.88),
    rgba(0,0,0,.15)
  );
  display:flex;
  align-items:flex-end;
  padding:35px;
}

.card-content h3{
  font-family:'Playfair Display',serif;
  font-size:34px;
  margin-bottom:14px;
}

.card-content p{
  line-height:1.8;
  color:rgba(255,255,255,.82);
  margin-bottom:20px;
}

.price{
  color:var(--accent);
  font-weight:700;
  margin-bottom:22px;
  display:block;
  font-size:18px;
}

/* =========================
   MAP SECTION (НОВОЕ)
========================= */

.map-section{
  padding:120px 20px;
  background:#08120e;
}

.map-title{
  font-family:'Playfair Display',serif;
  font-size:54px;
  text-align:center;
  margin-bottom:20px;
}

.map-text{
  text-align:center;
  color:var(--muted);
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

.map-container{
  width:100%;
  max-width:1000px;
  margin:60px auto 0;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 25px 70px rgba(0,0,0,.55);
  transition:.4s;
}

.map-container:hover{
  transform:translateY(-6px);
  box-shadow:0 35px 90px rgba(0,0,0,.65);
}

.map-container iframe{
  width:100%;
  height:480px;
  border:0;
}

/* =========================
   FOOTER
========================= */

footer{
  padding:55px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.5);
  font-size:14px;
  background:#050805;
}

/* =========================
   MENU FIX
========================= */

body.menu-open{
  overflow:hidden;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .cinema-text{
    font-size:56px;
  }

  .section-title,
  .map-title{
    font-size:46px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  body{padding-top:75px;}

  header{
    height:75px;
    padding:0 20px;
  }

  .logo{
    font-size:18px;
    letter-spacing:2px;
  }

  .burger{display:flex;}

  header nav{
    position:fixed;
    top:0;
    right:-100%;
    width:78%;
    height:100vh;
    background:#07110d;
    flex-direction:column;
    padding:110px 35px;
    transition:.45s;
    z-index:10000;
  }

  header nav.active{
    right:0;
  }

  .cinema-text{
    font-size:40px;
  }

  .hero-text{
    font-size:16px;
  }

  .section{
    padding:85px 18px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .card img{
    height:360px;
  }

  .map-container iframe{
    height:380px;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .cinema-text{
    font-size:34px;
  }

  .section-title,
  .map-title{
    font-size:30px;
  }

  .card img{
    height:320px;
  }

}