/* =====================================
   Auroraway.live CSS
===================================== */

/* -------------------------
   Root & Variables
------------------------- */
:root {
  --aw-heading: #ffbb10; /* Headings */
  --aw-text: #ffeacf; /* Main text */
  --aw-accent: #dae9ff; /* Accent color */
  --aw-button: #dae9ff; /* Button background */
  --aw-button-text: #3a3603; /* Button text */
  --aw-button-hover: #ffeacf; /* Button hover background */
  --aw-link-active: #dae9ff; /* Active links */
  --aw-bg: #3a3603; /* Site background */
  --aw-font: "Roboto", system-ui, sans-serif; /* Unique font */
}

/* -------------------------
   Global Styles
------------------------- */
body.auroraW-live {
  background-color: var(--aw-bg);
  color: var(--aw-text);
  font-family: var(--aw-font);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: var(--aw-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--aw-heading);
}

/* -------------------------
   Navbar
------------------------- */
.auroraW-navbar {
  background-color: var(--aw-bg);
  color: var(--aw-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.auroraW-navbar .nav-link {
  color: var(--aw-text);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.auroraW-navbar .nav-link.active,
.auroraW-navbar .nav-link:hover {
  color: var(--aw-link-active);
  transform: translateY(-2px);
}

.auroraW-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.auroraW-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* -------------------------
   Hero Section
------------------------- */
.auroraW-hero {
  position: relative;
  height: 80vh; /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  background: url("../img/hero-bg.jpg") center center / cover no-repeat;
  color: var(--aw-text);
}

.auroraW-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.auroraW-hero-inner {
  position: relative; /* above overlay */
  z-index: 1;
}

.auroraW-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--aw-heading);
  margin-bottom: 1rem;
}

.auroraW-hero-title span {
  color: var(--aw-accent);
}

.auroraW-hero-sub {
  font-size: 1.2rem;
  color: var(--aw-text);
  max-width: 700px;
  margin: 0 auto;
}

.auroraW-hero-cta {
  margin-top: 2rem;
}

.auroraW-hero-cta .auroraW-btn {
  background-color: var(--aw-button);
  color: var(--aw-button-text);
  border: none;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.auroraW-hero-cta .auroraW-btn:hover {
  background-color: var(--aw-button-hover);
  color: var(--aw-bg);
  transform: translateY(-2px);
}

.auroraW-btn-ghost {
  background: transparent;
  border: 1px solid var(--aw-accent);
  color: var(--aw-accent);
}

.auroraW-btn-ghost:hover {
  background-color: var(--aw-accent);
  color: var(--aw-bg);
}

/* -------------------------
   Cards (auroraW-card)
------------------------- */
.auroraW-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auroraW-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* -------------------------
   Disclaimer Section
------------------------- */
.auroraW-disclaimer {
  padding: 4rem 0;
  text-align: center;
  background: var(--aw-bg);
}

.auroraW-disclaimer .auroraW-card {
  background: rgba(255, 255, 255, 0.05); /* subtle translucent card */
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  max-width: 700px;
}

.auroraW-disclaimer .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--aw-heading);
  margin-bottom: 1.5rem;
  font-family: var(--aw-font);
}

.auroraW-disclaimer p {
  color: var(--aw-text);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-family: var(--aw-font);
}

.auroraW-disclaimer a.auroraW-link {
  color: var(--aw-accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.auroraW-disclaimer a.auroraW-link:hover {
  color: var(--aw-heading);
  text-decoration: none;
}

/* Buttons in disclaimer */
.auroraW-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.07s ease, color 0.2s ease;
}

.auroraW-btn-ghost {
  background: var(--aw-button);
  color: var(--aw-button-text);
  padding: 0.65rem 1.4rem;
  font-size: 1rem;
}

.auroraW-btn-ghost:hover,
.auroraW-btn-ghost:focus {
  background: var(--aw-button-hover);
  color: var(--aw-bg);
  transform: translateY(-1px);
}

.auroraW-btn-ghost:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .auroraW-disclaimer .auroraW-card {
    padding: 2rem 1.5rem;
  }
  .auroraW-disclaimer .section-title {
    font-size: 1.75rem;
  }
  .auroraW-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------
   Game Section
------------------------- */
.auroraW-game {
  padding: 4rem 0;
}

.auroraW-game-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.auroraW-iframe-wrap iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 1rem;
}

/* -------------------------
   Features Section
------------------------- */
.auroraW-features .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--aw-heading);
}

.auroraW-feature {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auroraW-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.auroraW-feature-icon {
  font-size: 2rem;
  color: var(--aw-accent);
}

.auroraW-feature-title {
  font-weight: 600;
  color: var(--aw-heading);
  margin-bottom: 0.5rem;
}

.auroraW-feature-text {
  color: var(--aw-text);
}

/* -------------------------
   About Section
------------------------- */
.auroraW-about {
  padding: 5rem 0;
  background: var(--aw-bg);
  color: var(--aw-text);
  text-align: center;
}

.auroraW-about-media img {
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auroraW-about-media img:hover {
  transform: translateY(-5px);
}

.auroraW-about .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--aw-heading);
  margin-bottom: 1.5rem;
  font-family: var(--aw-font);
}

.auroraW-about .section-sub {
  font-size: 1.1rem;
  color: var(--aw-text);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: var(--aw-font);
}

.auroraW-about p {
  color: var(--aw-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.auroraW-btn-ghost {
  background: var(--aw-button);
  color: var(--aw-button-text);
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.auroraW-btn-ghost:hover,
.auroraW-btn-ghost:focus {
  background: var(--aw-button-hover);
  color: var(--aw-bg);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .auroraW-about-text {
    padding: 0 1rem;
  }
  .auroraW-about .section-title {
    font-size: 1.75rem;
  }
  .auroraW-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------
   Reviews Section
------------------------- */
.auroraW-reviews {
  padding: 5rem 0;
  background: var(--aw-bg);
  color: var(--aw-text);
  text-align: center;
}

.auroraW-reviews .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--aw-heading);
  margin-bottom: 1rem;
  font-family: var(--aw-font);
}

.auroraW-reviews .section-sub {
  font-size: 1.05rem;
  color: var(--aw-text);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.auroraW-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.auroraW-review {
  background: rgba(218, 233, 255, 0.05); /* subtle accent */
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auroraW-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.auroraW-review-head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.auroraW-avatar {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--aw-accent);
  color: var(--aw-button-text);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--aw-font);
  margin-right: 1rem;
}

.auroraW-review-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aw-heading);
  margin-bottom: 0;
}

.auroraW-review-text {
  color: var(--aw-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .auroraW-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
   Footer
------------------------- */
.auroraW-footer {
  background: #111;
  color: var(--aw-text);
  padding: 3rem 0;
  text-align: center;
}

.auroraW-footer a,
.auroraW-footer-link {
  color: var(--aw-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.auroraW-footer-link:hover {
  color: var(--aw-accent);
}

.auroraW-footer-disclaimer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.auroraW-footer-copy {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  font-size: 0.85rem;
}

.auroraW-footer-logo {
  max-width: 180px;
  display: block;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.auroraW-footer-logo:hover {
  transform: scale(1.05);
}

/* -------------------------
   Scroll to Top
------------------------- */
.auroraW-scrolltop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--aw-button);
  color: var(--aw-button-text);
  box-shadow: 0 10px 22px rgba(11, 24, 40, 0.12);
  z-index: 80;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auroraW-scrolltop:hover {
  background: var(--aw-button-hover);
  color: var(--aw-bg);
  transform: translateY(-3px);
}

/* -------------------------
   Age / Disclaimer Popup
------------------------- */
#auroraW-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.auroraW-age-popup-content {
  background: var(--aw-bg);
  color: var(--aw-text);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.auroraW-age-popup-content h2 {
  font-size: 1.8rem;
  color: var(--aw-heading);
  margin-bottom: 1rem;
}

.auroraW-age-popup-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.auroraW-age-popup-actions .auroraW-btn {
  margin: 0.25rem;
}

/* -------------------------
   Responsive Adjustments
------------------------- */
@media (max-width: 768px) {
  .auroraW-hero-title {
    font-size: 2rem;
  }
  .auroraW-hero-sub {
    font-size: 1rem;
  }
  .auroraW-features .auroraW-feature-title {
    font-size: 1.2rem;
  }
  .auroraW-reviews-grid {
    gap: 1.5rem;
  }
}

/* -------------------------
   Age / Disclaimer Popup
------------------------- */
.auroraW-age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.auroraW-age-popup-content {
  background: var(--aw-bg);
  color: var(--aw-text);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.auroraW-age-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--aw-heading);
  margin-bottom: 1rem;
  font-family: var(--aw-font);
}

.auroraW-age-popup-text {
  font-size: 1rem;
  color: var(--aw-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.auroraW-age-popup-actions .auroraW-btn {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--aw-button-text);
  background: var(--aw-button);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auroraW-age-popup-actions .auroraW-btn:hover {
  background: var(--aw-button-hover);
  color: var(--aw-bg);
}

.auroraW-age-popup-actions .auroraW-btn-ghost {
  background: transparent;
  border: 2px solid var(--aw-accent);
  color: var(--aw-accent);
}

.auroraW-age-popup-actions .auroraW-btn-ghost:hover {
  background: var(--aw-accent);
  color: var(--aw-bg);
}

/* -------------------------
   Contact Section
------------------------- */
.auroraW-contact {
  padding: 5rem 0;
  text-align: center;
  background: var(--aw-bg);
}

.auroraW-contact .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--aw-heading);
  margin-bottom: 1rem;
  font-family: var(--aw-font);
}

.auroraW-contact .section-sub {
  font-size: 1rem;
  color: var(--aw-text);
  margin-bottom: 3rem;
}

.auroraW-contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.auroraW-contact-form .form-label {
  color: var(--aw-text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.auroraW-contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--aw-accent);
  color: var(--aw-text);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

.auroraW-contact-form .form-control:focus {
  outline: none;
  border-color: var(--aw-heading);
  box-shadow: 0 0 0 2px rgba(255, 187, 16, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.auroraW-contact-form textarea.form-control {
  resize: none;
}

.auroraW-contact-form button.auroraW-btn {
  background: var(--aw-button);
  color: var(--aw-button-text);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.auroraW-contact-form button.auroraW-btn:hover {
  background: var(--aw-button-hover);
  color: var(--aw-bg);
}

/* General Legal Section Styling */
.auroraW-legal {
  padding: 4rem 1rem;
  background: var(--aw-bg);
  font-family: var(--aw-font);
  color: var(--aw-text);
}

.auroraW-legal .auroraW-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3); /* semi-transparent card background */
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.auroraW-legal .section-title {
  color: var(--aw-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.auroraW-legal p {
  color: var(--aw-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.auroraW-legal .subheading {
  color: var(--aw-accent);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Responsive typography */
@media (max-width: 768px) {
  .auroraW-legal .section-title {
    font-size: 1.75rem;
  }
  .auroraW-legal .subheading {
    font-size: 1.1rem;
  }
  .auroraW-legal p {
    font-size: 0.95rem;
  }
}

/* Links inside legal text */
.auroraW-legal a {
  color: var(--aw-accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.auroraW-legal a:hover {
  color: var(--aw-heading);
}

/* Remove extra buttons, maintain spacing */
.auroraW-legal .auroraW-btn {
  display: none;
}

/* Optional: Add subtle divider for sections */
.auroraW-legal hr {
  border: 0;
  height: 1px;
  background: rgba(255, 234, 207, 0.2);
  margin: 2rem 0;
}

/* Optional: For visual hierarchy, nested lists or points */
.auroraW-legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  list-style-type: disc;
  color: var(--aw-text);
}

.auroraW-legal li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
