/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0a0a11;
  color: #e8e8f5;
  overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: 40px auto;
}

/* ================= HEADER ================= */

.header {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2000;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.logo span {
  color: #9d4bff; /* neon purple */
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  color: #dcdcff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav a:hover,
.nav .active {
  color: #9d4bff;
}

/* ================= BURGER ================= */

.menu-btn {
  display: none;
  cursor: pointer;
  z-index: 3000;
}

.menu-btn div {
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 3px;
  transition: 0.3s ease;
}

.menu-btn.active div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.active div:nth-child(2) {
  opacity: 0;
}
.menu-btn.active div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #0d0d17;
  padding-top: 80px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: 0.4s ease;
  z-index: 2500;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.mobile-menu.open {
  right: 0;
}

/* ================= HERO ================= */

.dark-hero {
  margin-top: 30px;
  padding: 120px 40px;
  border-radius: 25px;
  background: linear-gradient(145deg, #11111c, #1c1c29);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.9;
}

.hero-img img {
  width: 420px;
  filter: drop-shadow(0 0 25px rgba(157, 75, 255, 0.3));
}
.about-img-block img {
      width: 420px;
  filter: drop-shadow(0 0 25px rgba(157, 75, 255, 0.3));
}
/* ================= BUTTONS – NEON BORDER ================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  margin-top: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s ease;
}

.neon-btn {
  border: 2px solid #9d4bff;
  color: #fff;
  background: transparent;
  box-shadow: 0 0 8px rgba(157, 75, 255, 0.4);
}

.neon-btn:hover {
  box-shadow: 0 0 14px rgba(157, 75, 255, 0.8);
  transform: translateY(-3px);
}

/* ================= FEATURES ================= */

.features-gaming h2 {
  text-align: center;
  font-size: 34px;
  margin-top: 80px;
  margin-bottom: 30px;
  color: #fff;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.neon-card {
  background: #13131e;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(157, 75, 255, 0.25);
}

.neon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(157, 75, 255, 0.4);
}

.icon {
  font-size: 48px;
  color: #9d4bff;
  margin-bottom: 15px;
}

/* ================= ROOMS SECTION ================= */

.rooms-section h2 {
  text-align: center;
  font-size: 34px;
  margin-top: 90px;
  margin-bottom: 35px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.room-card {
  background: #14141f;
  border-radius: 18px;
  padding: 20px;
  transition: 0.3s ease;
  text-align: center;
}

.room-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(157, 75, 255, 0.35);
}
.grid-2 {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
/* ================= CTA ================= */

.cta-section {
  text-align: center;
  margin-top: 120px;
  padding: 70px 30px;
  background: linear-gradient(145deg, #151521, #1d1d2b);
  border-radius: 25px;
}

.cta-section h2 {
  color: #fff;
  font-size: 36px;
}

.cta-section p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.8;
}

/* ================= FORMS ================= */

form {
  background: #13131e;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid rgba(157, 75, 255, 0.25);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #0f0f18;
  border: 1px solid #2b2b3a;
  border-radius: 10px;
  color: #fff;
}

form input:focus,
form textarea:focus {
  border: 1px solid #9d4bff;
  outline: none;
}

/* ================= FOOTER ================= */

footer {
  text-align: center;
  padding: 40px 0;
  margin-top: 90px;
  opacity: 0.6;
}

.footer-links a {
  color: #9d4bff;
  text-decoration: none;
  margin: 0 10px;
}

/* ================= COOKIE BANNER ================= */

#cookie-banner {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #13131e;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(157, 75, 255, 0.3);
  box-shadow: 0 0 20px rgba(157, 75, 255, 0.3);
  z-index: 9999;
}

.cookie-box button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #9d4bff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

/* ================= RESPONSIVE ================= */

/* ===== TABLETS ===== */
@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-img img, .about-img-block img {
    width: 350px;
  }
}

/* ===== MOBILE LAYOUT ===== */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
.grid-2 {
    flex-direction: column;
}
  .container {
    width: 92%;
    margin: 25px auto;
  }

  /* HEADER */
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 99999;
  }

  .mobile-menu {
    z-index: 99998;
    padding-top: 120px;
    gap: 28px;
  }

  .mobile-menu a {
    font-size: 20px;
  }

  /* HERO */
  .dark-hero {
    flex-direction: column;
    text-align: center;
    padding: 70px 25px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
    margin-top: 15px;
  }

  .hero-img img {
    width: 260px;
    margin-top: 20px;
  }

  /* BUTTONS */
  .btn {
    padding: 12px 26px;
    font-size: 15px;
  }

  /* GRID FIX */
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARDS */
  .neon-card {
    padding: 25px;
  }

  .icon {
    font-size: 38px;
  }

  .room-card img {
    height: auto;
    width: 100%;
  }

  /* CTA */
  .cta-section {
    padding: 50px 20px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 15px;
  }

  /* FORMS */
  form {
    padding: 25px;
  }

  form input,
  form textarea,
  form select {
    padding: 10px;
    font-size: 14px;
  }

  /* CONTACT PAGE */
  .contact-flex {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-info p {
    font-size: 15px;
  }

  /* FOOTER */
  footer {
    margin-top: 50px;
  }

  .footer-links a {
    display: block;
    margin-bottom: 8px;
  }
}

/* ===== SMALL PHONES (iPhone SE, 360px) ===== */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .icon {
    font-size: 34px;
  }
}
