@font-face {
  font-family: 'Glacial Indifference';
  src: local('Glacial Indifference');
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Glacial Indifference', 'Montserrat', 'Poppins', Arial, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(210, 0, 0, 0.45), transparent 35%),
    linear-gradient(135deg, #080808 0%, #190000 44%, #350000 100%);
  overflow-x: hidden;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6%;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* 
.logo {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
} */

.logo span {
  color: #ff2323;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.88;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #ff3434;
  opacity: 1;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  min-width: 220px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(9, 9, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.hero,
.inner-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 6% 70px;
  overflow: hidden;
}

/* .inner-hero {
  min-height: 70vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    url('../assets/images/cbg.webp') center/cover;
} */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.84)),
}

.hero-video1 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.84)),
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.36), transparent 34%);
  z-index: -1;
}

.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 24px;
  color: #ffcdcd;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1,
.inner-hero h1 {
  font-size: clamp(50px, 8vw, 118px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero h1 span,
.inner-hero h1 span {
  color: #ff2323;
  text-shadow: 0 0 24px rgba(255, 0, 0, 0.65);
}

.hero p,
.inner-hero p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
}

.section-padding {
  padding: 95px 6%;
}

.section-title {
  margin-bottom: 45px;
  max-width: 790px;
}

.compact-title {
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
  max-width: 900px;
}

.offer-title{
    width: 100%;
    text-align: center;
    margin: 0 auto 60px auto;

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

.offer-title h2{
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 18px;

    text-align: center;
}

.offer-title p{
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.65;

    text-align: center;
    max-width: 700px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff2323, #880000);
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.32);
}

.btn-primary1 {
    background: linear-gradient(135deg, #ff2323, #880000);
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.32);
    margin-top: 10px;

}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255, 0, 0, 0.25);
}

.glass-card {
  /* background: rgba(255, 255, 255, 0.075); */
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* backdrop-filter: blur(16px); */
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  padding: 38px;
}

.about-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: #ff3434;
  font-size: 34px;
  margin-bottom: 6px;
}

.stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.brand-mark {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
  text-align: center;
}

.brand-mark::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  /* background: rgba(255, 0, 0, 0.22); */
  /* filter: blur(18px); */
}

.brand-mark img {
  position: relative;
  max-width: 210px;
  margin-bottom: 22px;
  z-index: 2;
  height: 160px;
  width: 190px;
}

.brand-mark h3 {
  position: relative;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  z-index: 2;
}

.brand-mark h3 span {
  color: #ff2323;
  display: block;
}

.branches-grid,
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.branch-card {
  overflow: hidden;
}

.branch-card img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.branch-info {
  padding: 26px;
}

.branch-info h3{
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.branch-info p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-strip {
  margin-top: 28px;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-strip p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 6px;
}

.offers-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.offers-window {
  width: 100%;
  overflow: hidden;
}

.offers-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
}

.offer-card {
  flex: 0 0 calc(25% - 17px);
  min-height: 350px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-card img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: 0 0 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 28px;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-btn:hover {
  background: #ff2323;
}

.packages-grid {
  grid-template-columns: repeat(2, 1fr);
}

.package-photo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.package-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: 0.5s ease;
}

.package-photo-card:hover img {
  transform: scale(1.06);
}

.package-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.88));
}

.package-overlay h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.package-overlay p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 460px;
}

.menu-section {
  position: relative;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-branch-card {
  min-height: 320px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-branch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 35, 35, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.menu-card-top,
.menu-actions {
  position: relative;
  z-index: 2;
}

.menu-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 35, 35, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffcdcd;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.menu-branch-card h3 {
  font-size: clamp(34px, 4vw, 52px);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.menu-branch-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 360px;
}

.menu-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
/* 
.reels-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.reel-card {
  min-width: 270px;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  scroll-snap-align: start;
}

.reel-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
} */
 /* .reels-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reels-row::-webkit-scrollbar {
  display: none;
}

.reel-card {
  min-width: 270px;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.reel-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
} */


.vibes-section{
    padding: 100px 8%;
    background: #2b0000;
}

/* TITLE */
.vibes-title{
    text-align: center;
    margin-bottom: 60px;
}

.vibes-title h2{
    font-size: clamp(42px, 5vw, 80px);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.vibes-title p{
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}
.vibes-grid{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:320px;

    gap:28px;

    overflow-x:auto;
    overflow-y:hidden;

    padding-bottom:10px;

    scroll-behavior:smooth;
}

/* HIDE SCROLLBAR */
/* .vibes-grid::-webkit-scrollbar{
    height:6px;
}

.vibes-grid::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.08);
    border-radius:20px;
}

.vibes-grid::-webkit-scrollbar-thumb{
    background:#c1121f;
    border-radius:20px;
} */

/* CARD */

.vibes-grid::-webkit-scrollbar{
    display:none;
}

.vibe-card{
    position:relative;
    height:520px;

    overflow:hidden;
    border-radius:28px;

    flex-shrink:0;
    text-decoration:none;
}

/* VIDEO */
.vibe-card video{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

/* OVERLAY */
.vibe-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.15)
    );

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

    gap:12px;

    opacity:0;
    transition:0.4s ease;

    color:#fff;
}

.vibe-overlay i{
    font-size:42px;
}

.vibe-overlay span{
    font-size:18px;
    font-weight:600;
}

/* HOVER */
.vibe-card:hover video{
    transform:scale(1.08);
}

.vibe-card:hover .vibe-overlay{
    opacity:1;
}

footer {
  padding: 70px 6% 30px;
  background: rgba(0, 0, 0, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}

footer h3,
footer h4 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

footer p,
footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 10px;
  line-height: 1.6;
}

.copyright{
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
    width: 100%;
}

.contact-branches {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  padding: 32px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
/* 
.contact-form {
  padding: 34px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-family: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form option {
  color: #000000;
} */

/* SECTION */
.lux-contact-section{
    padding:120px 8%;
    background:radial-gradient(circle at top left, rgba(210, 0, 0, 0.45), transparent 35%),
    linear-gradient(135deg, #080808 0%, #190000 44%, #350000 100%);
}

/* WRAPPER */
.lux-contact-wrapper{
    max-width:950px;
    margin:auto;
}

/* HEADER */
.lux-contact-header{
    text-align:center;
    margin-bottom:55px;
}

/* TITLE */
.lux-contact-title{
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* SUBTITLE */
.lux-contact-subtitle{
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.65;
    max-width: 900px;
}

/* FORM */
.lux-contact-form{
    display:grid;
    gap:18px;

    padding:42px;

    border-radius:34px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);
}

/* INPUT */
.lux-input{
    width:100%;

    padding:18px 22px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,0.12);

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

    color:#ffffff;

    font-size:16px;

    outline:none;

    transition:0.3s ease;
}

/* PLACEHOLDER */
.lux-input::placeholder{
    color:rgba(255,255,255,0.5);
}

/* SELECT OPTIONS */
.lux-input option{
    color:#000;
}

/* FOCUS */
.lux-input:focus{
    border-color:#ff2b2b;

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

    box-shadow:
    0 0 0 4px rgba(255,0,0,0.08);
}

/* TEXTAREA */
.lux-textarea{
    resize:none;
}

/* BUTTON */
.lux-submit-btn{
    border:none;

    padding:18px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #ff2a2a,
        #c40000
    );

    color:#ffffff;

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

    cursor:pointer;

    transition:0.35s ease;
}

/* BUTTON HOVER */
.lux-submit-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 12px 30px rgba(255,0,0,0.28);
}

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

    .lux-contact-section{
        padding:90px 6%;
    }

    .lux-contact-form{
        padding:28px;
    }

    .lux-contact-subtitle{
        font-size:17px;
    }

}

@media (max-width: 1050px) {
  .offer-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 6%;
    width: min(320px, 88vw);
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: flex;
    background: transparent;
    box-shadow: none;
    padding: 10px 0 0 14px;
    border: 0;
  }

  .about-grid,
  .branches-grid,
  .packages-grid,
  .menu-grid,
  .footer-grid,
  .contact-layout,
  .contact-branches {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 100vh;
  }
}

@media (max-width: 620px) {
  .navbar {
    padding: 16px 5%;
  }

  .logo {
    font-size: 21px;
  }

  .section-padding {
    padding: 70px 5%;
  }

  .about-card,
  .contact-form,
  .contact-card {
    padding: 26px;
  }

  .hero p,
  .inner-hero p,
  .section-title p,
  .about-card p {
    font-size: 16px;
  }

  .offer-card {
    flex: 0 0 100%;
  }

  .offers-slider {
    gap: 8px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .package-photo-card,
  .package-photo-card img {
    min-height: 460px;
  }

  .package-overlay {
    padding: 28px;
  }

  .btn {
    width: 100%;
  }
}



