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

body{
  font-family:'Montserrat',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* =========================
   LOADER
========================= */

.loader{
  position:fixed;
  inset:0;
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  transition:1s ease;
}

.loader-text{
  font-size:70px;
  letter-spacing:15px;
  font-weight:800;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{opacity:0.3;}
  50%{opacity:1;}
  100%{opacity:0.3;}
}

/* =========================
   BACKGROUND
========================= */

.background-overlay{
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.92)),
    url('images/bg.jpg');
  background-size:cover;
  background-position:center;
  z-index:-2;
}

.background-overlay::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.04),
    transparent
  );
  animation:shine 10s linear infinite;
}

@keyframes shine{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(100%);}
}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(10px);
  z-index:999;
}

.logo{
  font-size:32px;
  font-weight:800;
  letter-spacing:8px;
}

.nav-links{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-size:14px;
  letter-spacing:2px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#c0c0c0;
}

.nav-button{
  padding:14px 28px;
  border:1px solid white;
  color:white;
  text-decoration:none;
  transition:0.4s;
  border-radius:12px;
}

.nav-button:hover{
  background:white;
  color:black;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:0 10%;
}

.hero-left h1{
  font-size:clamp(90px,10vw,180px);
  font-weight:800;
  letter-spacing:10px;
}

.hero-left h2{
  margin-top:15px;
  font-weight:300;
  letter-spacing:8px;
}

.hero-line{
  width:120px;
  height:2px;
  background:white;
  margin:30px 0;
}

.hero-left p{
  line-height:2;
  letter-spacing:4px;
  color:#d4d4d4;
}

.hero-buttons{
  margin-top:50px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-buttons .btn{
  flex-shrink:0;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width:220px;
  height:58px;

  border-radius:14px;

  text-decoration:none;
  transition:0.4s ease;

  letter-spacing:1.5px;
  font-size:14px;
  font-weight:500;

  text-transform:uppercase;
}

.btn:hover{
  transform:translateY(-4px);
}

.btn-light{
  background:white;
  color:black;
}

.btn-dark{
  border:1px solid white;
  color:white;
  background:transparent;
}

/* =========================
   HERO RIGHT
========================= */

.hero-right{
  display:flex;
  justify-content:center;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0);}
}

/* =========================
   SECTIONS
========================= */

section{
  padding:120px 10%;
  opacity:0;
  transform:translateY(60px);
  transition:1s ease;
}

section.active{
  opacity:1;
  transform:translateY(0);
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:70px;
  letter-spacing:8px;
}

.section-title p{
  margin-top:20px;
  color:#cfcfcf;
  letter-spacing:3px;
}

/* =========================
   OFFER
========================= */

.offer-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(320px, 520px));
  justify-content:center;
  gap:50px;
}

.offer-card{
  overflow:hidden;
  border-radius:25px;
  transition:0.5s;
}

.offer-card img{
  width:100%;
  border-radius:25px;
  transition:0.5s;
}

.offer-card:hover{
  transform:translateY(-10px);
}

/* =========================
   ABOUT
========================= */

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:50%;
  border-radius:25px;
}

.about-text p{
  margin-bottom:25px;
  line-height:2;
  color:#d2d2d2;
}

/* =========================
   GALLERY
========================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.video-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  cursor:pointer;
  background:#111;

  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.video-card.active{
  opacity:1;
  transform:translateY(0);
}

.video-card video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;

  border-radius:28px;
  transform:scale(1.08);
  transition:0.6s ease;

  pointer-events:none;
}

.video-card:hover video{
  transform:scale(1.15);
}

.video-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.6));
  opacity:0.6;
  transition:0.4s;
}

.video-card:hover::after{
  opacity:0.2;
}

.video-fallback{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#111,#222);
  display:none;
}

.video-card.error .video-fallback{
  display:block;
}

/* =========================
   CONTACT
========================= */

.contact-box{
  max-width:800px;
  margin:auto;
  text-align:center;
  padding:70px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  backdrop-filter:blur(10px);

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

.contact-box h3{
  font-size:40px;
  margin-bottom:20px;
}

/* =========================
   FOOTER
========================= */

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-logo{
  font-size:32px;
  letter-spacing:10px;
  margin-bottom:15px;
}

/* =========================
   CENTER BUTTON
========================= */

.center-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:20px auto 0 auto;
  width:fit-content;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

  .hero,
  .about-wrapper{
    grid-template-columns:1fr;
  }

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

  .hero{
    padding-top:150px;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }
}

@media(max-width:700px){

  .hero-left h1{
    font-size:70px;
  }

  .section-title h2{
    font-size:42px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }
}

/* =========================
   CALENDAR
========================= */

.calendar-section{
  padding:120px 8%;
}

.calendar-legend{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.calendar-legend div{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  letter-spacing:1px;
}

.legend{
  width:18px;
  height:18px;
  border-radius:50%;
}

.legend.free{
  background:#2ecc71;
}

.legend.busy{
  background:#ff3b30;
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.month-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:25px;
  backdrop-filter:blur(10px);
}

.month-title{
  text-align:center;
  margin-bottom:20px;
  font-size:22px;
  letter-spacing:3px;
}

.days-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}

.day-name{
  text-align:center;
  font-size:12px;
  opacity:0.6;
  margin-bottom:8px;
}

.day{
  aspect-ratio:1/1;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  transition:0.3s ease;
  cursor:pointer;
  background:rgba(255,255,255,0.05);
}

.day:hover{
  transform:scale(1.06);
}

/* =========================
   CALENDAR COLORS
========================= */

.day.free{
  background:#2ecc71;
  color:#000;
  font-weight:700;
}

.day.busy{
  background:#ff3b30;
  color:#fff;
  font-weight:700;
}

.day.empty{
  visibility:hidden;
}

/* =========================
   ADMIN PANEL (IMPROVED)
========================= */

.admin-panel{
  margin-top:60px;
  text-align:center;
}

.admin-panel input{
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.15);
  outline:none;
  width:280px;
  margin-bottom:15px;
  transition:0.3s ease;
  background:#111;
  color:white;
}

.admin-panel input:focus{
  border-color:#2ecc71;
  box-shadow:0 0 12px rgba(46,204,113,0.35);
}

.admin-panel button{
  padding:14px 24px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
  background:#2ecc71;
  color:#000;
}

.admin-panel button:hover{
  transform:translateY(-3px);
  box-shadow:0 0 15px rgba(46,204,113,0.4);
}

/* =========================
   BOOKING MODAL (BUTTON GLOW FIX)
========================= */

.booking-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.booking-box{
  background:#111;
  padding:40px;
  border-radius:20px;
  text-align:center;
  width:320px;
  border:1px solid rgba(255,255,255,0.1);
}

.booking-box h2{
  margin-bottom:10px;
}

.booking-date{
  margin:15px 0;
  font-size:18px;
  font-weight:700;
  color:#2ecc71;
}

.booking-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:20px;
}

/* BUTTONS UPGRADED */
.btn-cancel,
.btn-confirm{
  padding:10px 18px;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:0.25s ease;
  position:relative;
  overflow:hidden;
}

/* CANCEL */
.btn-cancel{
  background:#333;
  color:white;
}

.btn-cancel:hover{
  background:#444;
  transform:translateY(-3px);
  box-shadow:0 0 12px rgba(255,255,255,0.15);
}

/* CONFIRM */
.btn-confirm{
  background:#2ecc71;
  color:black;
  font-weight:700;
}

.btn-confirm:hover{
  background:#39e58a;
  transform:translateY(-3px);
  box-shadow:0 0 15px rgba(46,204,113,0.5);
}

/* click feedback */
.btn-cancel:active,
.btn-confirm:active{
  transform:scale(0.95);
}

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

body{
  font-family:'Montserrat',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* =========================
   LOADER
========================= */

.loader{
  position:fixed;
  inset:0;
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  transition:1s ease;
}

.loader-text{
  font-size:70px;
  letter-spacing:15px;
  font-weight:800;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{opacity:0.3;}
  50%{opacity:1;}
  100%{opacity:0.3;}
}

/* =========================
   BACKGROUND
========================= */

.background-overlay{
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.92)),
    url('images/bg.jpg');
  background-size:cover;
  background-position:center;
  z-index:-2;
}

.background-overlay::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.04),
    transparent
  );
  animation:shine 10s linear infinite;
}

@keyframes shine{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(100%);}
}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(10px);
  z-index:999;
}

.logo{
  font-size:32px;
  font-weight:800;
  letter-spacing:8px;
}

.nav-links{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-size:14px;
  letter-spacing:2px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#c0c0c0;
}

.nav-button{
  padding:14px 28px;
  border:1px solid white;
  color:white;
  text-decoration:none;
  transition:0.4s;
  border-radius:12px;
}

.nav-button:hover{
  background:white;
  color:black;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:0 10%;
}

.hero-left h1{
  font-size:clamp(90px,10vw,180px);
  font-weight:800;
  letter-spacing:10px;
}

.hero-left h2{
  margin-top:15px;
  font-weight:300;
  letter-spacing:8px;
}

.hero-line{
  width:120px;
  height:2px;
  background:white;
  margin:30px 0;
}

.hero-left p{
  line-height:2;
  letter-spacing:4px;
  color:#d4d4d4;
}

.hero-buttons{
  margin-top:50px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-buttons .btn{
  flex-shrink:0;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width:220px;
  height:58px;

  border-radius:14px;

  text-decoration:none;
  transition:0.4s ease;

  letter-spacing:1.5px;
  font-size:14px;
  font-weight:500;

  text-transform:uppercase;
}

.btn:hover{
  transform:translateY(-4px);
}

.btn-light{
  background:white;
  color:black;
}

.btn-dark{
  border:1px solid white;
  color:white;
  background:transparent;
}

/* =========================
   HERO RIGHT
========================= */

.hero-right{
  display:flex;
  justify-content:center;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0);}
}

/* =========================
   SECTIONS
========================= */

section{
  padding:120px 10%;
  opacity:0;
  transform:translateY(60px);
  transition:1s ease;
}

section.active{
  opacity:1;
  transform:translateY(0);
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:70px;
  letter-spacing:8px;
}

.section-title p{
  margin-top:20px;
  color:#cfcfcf;
  letter-spacing:3px;
}

/* =========================
   OFFER
========================= */

.offer-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(320px, 520px));
  justify-content:center;
  gap:50px;
}

.offer-card{
  overflow:hidden;
  border-radius:25px;
  transition:0.5s;
}

.offer-card img{
  width:100%;
  border-radius:25px;
  transition:0.5s;
}

.offer-card:hover{
  transform:translateY(-10px);
}

/* =========================
   ABOUT
========================= */

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:50%;
  border-radius:25px;
}

.about-text p{
  margin-bottom:25px;
  line-height:2;
  color:#d2d2d2;
}

/* =========================
   GALLERY
========================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.video-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  cursor:pointer;
  background:#111;

  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.video-card.active{
  opacity:1;
  transform:translateY(0);
}

.video-card video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;

  border-radius:28px;
  transform:scale(1.08);
  transition:0.6s ease;

  pointer-events:none;
}

.video-card:hover video{
  transform:scale(1.15);
}

.video-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.6));
  opacity:0.6;
  transition:0.4s;
}

.video-card:hover::after{
  opacity:0.2;
}

.video-fallback{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#111,#222);
  display:none;
}

.video-card.error .video-fallback{
  display:block;
}

/* =========================
   CONTACT
========================= */

.contact-box{
  max-width:800px;
  margin:auto;
  text-align:center;
  padding:70px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  backdrop-filter:blur(10px);

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

.contact-box h3{
  font-size:40px;
  margin-bottom:20px;
}

/* =========================
   FOOTER
========================= */

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-logo{
  font-size:32px;
  letter-spacing:10px;
  margin-bottom:15px;
}

/* =========================
   CENTER BUTTON
========================= */

.center-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:20px auto 0 auto;
  width:fit-content;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

  .hero,
  .about-wrapper{
    grid-template-columns:1fr;
  }

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

  .hero{
    padding-top:150px;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }
}

@media(max-width:700px){

  .hero-left h1{
    font-size:70px;
  }

  .section-title h2{
    font-size:42px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }
}

/* =========================
   CALENDAR
========================= */

.calendar-section{
  padding:120px 8%;
}

.calendar-legend{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.calendar-legend div{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  letter-spacing:1px;
}

.legend{
  width:18px;
  height:18px;
  border-radius:50%;
}

.legend.free{
  background:#2ecc71;
}

.legend.busy{
  background:#ff3b30;
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.month-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:25px;
  backdrop-filter:blur(10px);
}

.month-title{
  text-align:center;
  margin-bottom:20px;
  font-size:22px;
  letter-spacing:3px;
}

.days-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}

.day-name{
  text-align:center;
  font-size:12px;
  opacity:0.6;
  margin-bottom:8px;
}

.day{
  aspect-ratio:1/1;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  transition:0.3s ease;
  cursor:pointer;
  background:rgba(255,255,255,0.05);
}

.day:hover{
  transform:scale(1.06);
}

/* =========================
   CALENDAR COLORS
========================= */

.day.free{
  background:#2ecc71;
  color:#000;
  font-weight:700;
}

.day.busy{
  background:#ff3b30;
  color:#fff;
  font-weight:700;
}

.day.empty{
  visibility:hidden;
}

/* =========================
   ADMIN PANEL (IMPROVED)
========================= */

.admin-panel{
  margin-top:60px;
  text-align:center;
}

.admin-panel input{
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.15);
  outline:none;
  width:280px;
  margin-bottom:15px;
  transition:0.3s ease;
  background:#111;
  color:white;
}

.admin-panel input:focus{
  border-color:#2ecc71;
  box-shadow:0 0 12px rgba(46,204,113,0.35);
}

.admin-panel button{
  padding:14px 24px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
  background:#2ecc71;
  color:#000;
}

.admin-panel button:hover{
  transform:translateY(-3px);
  box-shadow:0 0 15px rgba(46,204,113,0.4);
}

/* =========================
   BOOKING MODAL (BUTTON GLOW FIX)
========================= */

.booking-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.booking-box{
  background:#111;
  padding:40px;
  border-radius:20px;
  text-align:center;
  width:320px;
  border:1px solid rgba(255,255,255,0.1);
}

.booking-box h2{
  margin-bottom:10px;
}

.booking-date{
  margin:15px 0;
  font-size:18px;
  font-weight:700;
  color:#2ecc71;
}

.booking-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:20px;
}

/* BUTTONS UPGRADED */
.btn-cancel,
.btn-confirm{
  padding:10px 18px;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:0.25s ease;
  position:relative;
  overflow:hidden;
}

/* CANCEL */
.btn-cancel{
  background:#333;
  color:white;
}

.btn-cancel:hover{
  background:#444;
  transform:translateY(-3px);
  box-shadow:0 0 12px rgba(255,255,255,0.15);
}

/* CONFIRM */
.btn-confirm{
  background:#2ecc71;
  color:black;
  font-weight:700;
}

.btn-confirm:hover{
  background:#39e58a;
  transform:translateY(-3px);
  box-shadow:0 0 15px rgba(46,204,113,0.5);
}

/* click feedback */
.btn-cancel:active,
.btn-confirm:active{
  transform:scale(0.95);
}

.busy-toast{
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(0,0,0,0.85);
  border:1px solid rgba(255,255,255,0.1);
  padding:14px 20px;
  border-radius:12px;
  color:white;
  font-size:14px;
  opacity:0;
  transition:0.25s ease;
  z-index:999999;
}

.busy-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(-10px);
}

.day.past{
  background:rgba(255,255,255,0.05);
  color:rgba(255,255,255,0.25);
  cursor:not-allowed;
  filter:grayscale(1);
  opacity:0.4;
}

.day.past:hover{
  transform:none;
}

.menu-toggle{display:none;background:none;border:none;color:#fff;font-size:28px;cursor:pointer;}
img,video{max-width:100%;height:auto;}
@media(max-width:700px){
  .menu-toggle{display:block;}
  .navbar{padding:18px 5%;}
  .nav-links{display:none;width:100%;flex-direction:column;align-items:center;gap:18px;}
  .nav-links.active{display:flex;}
  .nav-button{width:100%;max-width:320px;text-align:center;}
  .hero{padding:140px 5% 80px;}
  .hero-left h2,.hero-left p{letter-spacing:2px;}
  .calendar-grid{grid-template-columns:1fr;}
}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important;transition:none !important;scroll-behavior:auto !important;}
}
