
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0e0e0e;
  color: white;
  overflow-x: hidden;
}
 
* {
  box-sizing: border-box;
}
 
header,
.site-header {
  background: linear-gradient(to right, #0e0e0e, #2a2a2a);
  border-bottom: 2px solid #f5b400;
}
 
.header-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  gap: 20px;
  position: relative;
}
 
.logo img {
  height: 100px;
  width: auto;
  display: block;
}

/*Mobile*/
@media (max-width:900px){

.logo img{
height:50px
}

}
 
/* DESKTOP NAV */
nav ul,
.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
 
nav a,
.main-nav a {
  color: white;
  text-decoration: none;
}
 
nav a:hover,
.main-nav a:hover {
  color: #f5b400;
}
 
.booking-btn {
  border: 2px solid #f5b400;
  padding: 8px 16px;
  border-radius: 10px;
  color: #f5b400;
  display: inline-block;
}
 
.booking-btn:hover {
  background: #f5b400;
  color: #000;
}
 
.hero {
  height: 520px;
  overflow: hidden;
  width: 100%;
}
 
.hero-video,
.hero img,
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.nav-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 80px auto;
  position: relative;
  z-index: 2;
}
 
.nav-tiles-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 2;
}
 
.nav-tile,
.card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #f5b400;
  width: 100%;
}
 
.nav-tile a,
.card a {
  color: #f5b400;
}
 
.page-header {
  text-align: center;
  margin: 80px 0;
}
 
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
 
.event-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}
 
.event-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
 
footer {
  text-align: center;
  margin-top: 80px;
  padding: 40px;
  border-top: 1px solid #333;
}
 
/* WHATSAPP */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  animation: whatsappPulse 2s infinite;
  transition: transform 0.2s;
}
 
.whatsapp-button:hover {
  transform: scale(1.05);
}
 
.whatsapp-button img {
  width: 28px;
  height: 28px;
}
 
/* BURGER */
.burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  z-index: 10002;
}
 
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}
 
.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
 
.burger.active span:nth-child(2) {
  opacity: 0;
}
 
.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
 
/* ANIMATION */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
 
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
 
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
 
/* =========================
   MOBILE FINAL
========================= */
@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
 
  header,
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }
 
  .header-inner {
    padding: 8px 14px;
    min-height: 64px;
    gap: 10px;
    position: relative;
    z-index: 10000;
  }
 
  .logo img {
    height: 32px;
  }
 
  .burger {
    display: flex;
    width: 36px;
    height: 36px;
    margin-left: auto;
  }
 
  .burger span {
    width: 24px;
    height: 3px;
  }
 
  /* MOBILE NAV */
  .main-nav,
  nav#nav,
  #nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #111, #000);
    border-top: 1px solid rgba(245, 180, 0, 0.25);
    border-bottom: 2px solid #f5b400;
    display: none;
    z-index: 10001;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
 
  .main-nav.open,
  nav#nav.open,
  #nav.open {
    display: block;
  }
 
  .main-nav ul,
  nav#nav ul,
  #nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
  }
 
  .main-nav li,
  nav#nav li,
  #nav li {
    width: 100%;
  }
 
  .main-nav a,
  nav#nav a,
  #nav a {
    display: block;
    width: 100%;
    padding: 13px 18px;
    font-size: 16px;
    line-height: 1.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
 
  .main-nav li:last-child a,
  nav#nav li:last-child a,
  #nav li:last-child a {
    border-bottom: 0;
  }
 
  .booking-btn {
    margin: 10px 14px 6px;
    text-align: center;
    display: block;
  }
 
  /* HERO */
  .hero {
    height: 30vh;
    min-height: 200px;
    width: 100%;
    margin: 0;
  }
 
  .hero-video,
  .hero img,
  .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  /* KACHELN */
  .nav-tiles,
  .nav-tiles-secondary,
  .cards,
  .card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px;
    padding-right: 14px;
  }
 
  .nav-tiles {
    margin-top: -18px;
    margin-bottom: 18px;
  }
 
  .nav-tiles-secondary {
    margin-top: 18px;
    margin-bottom: 18px;
  }
 
  .nav-tile,
  .card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0;
    padding: 18px 18px 20px;
    border-radius: 16px;
  }
 
  .nav-tile h3,
  .card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
 
  .nav-tile p,
  .card p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
 
  .nav-tile a,
  .card a {
    font-size: 14px;
  }
 
  /* EVENTS GRID MOBILE */
  .events-grid {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
  }
 
  /* FOOTER */
  footer {
    padding: 28px 16px 90px;
    text-align: center;
  }
 
  footer p,
  footer a {
    font-size: 13px;
    line-height: 1.5;
  }
 
  /* WHATSAPP MOBILE */
  .whatsapp-button {
    position: fixed;
    right: 12px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    z-index: 9999;
  }
 
  .whatsapp-button span {
    display: none;
  }
 
  .whatsapp-button img {
    width: 22px;
    height: 22px;
  }
}
/* =========================
   COUNTDOWN
========================= */
 
.countdown-section {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}
 
.countdown-box {
  background: linear-gradient(180deg, rgba(40, 43, 48, 0.96), rgba(25, 27, 31, 0.96));
  border-top: 3px solid #f5b400;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  padding: 28px 24px 26px;
  text-align: center;
}
 
.countdown-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5b400;
  font-size: 0.95rem;
  font-weight: 800;
}
 
.countdown-box h2 {
  margin: 0 0 22px;
  color: #f3f3f3;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
}
 
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 800px;
  margin: 0 auto 18px;
}
 
.countdown-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 180, 0, 0.25);
  padding: 18px 12px;
}
 
.countdown-item span {
  display: block;
  color: #f5b400;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
 
.countdown-item small {
  color: #f0f0f0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
 
.countdown-note {
  margin: 0;
  color: #d9d9d9;
  font-size: 1rem;
  line-height: 1.5;
}
 
/* MOBILE */
@media (max-width: 900px) {
  .countdown-section {
    margin: 28px auto 40px;
    padding: 0 14px;
  }
 
  .countdown-box {
    padding: 20px 16px;
  }
 
  .countdown-box h2 {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }
 
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
 
  .countdown-item span {
    font-size: 1.8rem;
  }
 
  .countdown-note {
    font-size: 0.95rem;
  }
}
 

/* =========================
   HERO OVERLAY
========================= */
 
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  width: 100%;
}
 
.hero-video,
.hero img,
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
 
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
 
.hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #f5b400;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
 
.hero-content h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.05;
  font-weight: 800;
}
 
.hero-content p {
  max-width: 640px;
  margin: 0 0 28px;
  color: #f1f1f1;
  font-size: 1.1rem;
  line-height: 1.6;
}
 
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
 
.hero-btn-primary,
.hero-btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}
 
.hero-btn-primary {
  background: #f5b400;
  color: #000;
}
 
.hero-btn-primary:hover {
  background: #ffd24d;
}
 
.hero-btn-secondary {
  border: 2px solid #f5b400;
  color: #f5b400;
  background: rgba(0, 0, 0, 0.25);
}
 
.hero-btn-secondary:hover {
  background: #f5b400;
  color: #000;
}
 
/* MOBILE */
@media (max-width: 900px) {
  .hero {
    height: 40vh;
    min-height: 240px;
  }
 
  .hero-content {
    padding: 0 16px;
  }
 
  .hero-tag {
    margin-bottom: 10px;
    font-size: 0.8rem;
  }
 
  .hero-content h1 {
    font-size: 1.9rem;
    max-width: 100%;
    margin-bottom: 12px;
  }
 
  .hero-content p {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 18px;
  }
 
  .hero-buttons {
    gap: 10px;
  }
 
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 12px 18px;
    font-size: 0.92rem;
  }
}
/* =========================
   THANK YOU PAGE
========================= */
 
.thankyou-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at top center, rgba(255, 180, 0, 0.05), transparent 30%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
  display: flex;
  align-items: center;
}
 
.thankyou-box-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
 
.thankyou-box {
  background: linear-gradient(180deg, rgba(40, 43, 48, 0.96), rgba(25, 27, 31, 0.96));
  border-top: 3px solid #f5b400;
  padding: 34px 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  text-align: center;
}
 
.thankyou-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5b400;
  font-size: 0.95rem;
  font-weight: 800;
}
 
.thankyou-box h1 {
  margin: 0 0 14px;
  color: #f3f3f3;
  font-size: 2.6rem;
  font-weight: 800;
}
 
.thankyou-box p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
}
 
.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
 
@media (max-width: 900px) {
  .thankyou-box-wrap {
    padding: 34px 14px;
  }
 
  .thankyou-box {
    padding: 24px 18px;
  }
 
  .thankyou-box h1 {
    font-size: 1.8rem;
  }
 
  .thankyou-box p {
    font-size: 0.95rem;
  }
}