/* ==============================
   AURORAXHQ.CLICK MAIN STYLE
   ============================== */

/* ==============================
   Variables & Base Styles
   ============================== */
:root {
  --color-heading: #ff9135;
  --color-text: #f9b47b;
  --color-accent: #ff9135;
  --color-btn-bg: #ff9135;
  --color-btn-text: #4d3834;
  --color-btn-hover: #f9b47b;
  --color-link-active: #ff9135;
  --color-bg: #4d3834;
  --font-main: 'Exo 2', sans-serif;
}

body.auroraxhq-click-body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==============================
   HEADINGS
   ============================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: var(--font-main);
  text-shadow: 1px 1px 0 #000;
  margin-bottom: 1rem;
}

.auroraxhq-click-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.auroraxhq-click-section-sub {
  font-size: 1.1rem;
  color: var(--color-text);
}

/* ==============================
   NAVBAR
   ============================== */
.auroraxhq-click-nav {
  background-color: var(--color-bg);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.auroraxhq-click-logo {
  max-height: 80px;
}

.auroraxhq-click-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  margin-right: 1rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.auroraxhq-click-nav .nav-link:hover {
  color: var(--color-accent);
  text-shadow: 0 0 6px var(--color-accent);
}

.auroraxhq-click-nav .nav-link.active {
  color: var(--color-link-active);
  text-shadow: 0 0 6px var(--color-link-active);
}

/* ==============================
   HERO SECTION
   ============================== */
.auroraxhq-click-hero {
  height: 80vh; /* 80% of viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  color: var(--color-text);
  background: 
              url('../images/hero.jpg') center center/cover no-repeat;
  position: relative;
}

.auroraxhq-click-hero::before {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index: 1;
}

.auroraxhq-click-hero > .container {
  position: relative;
  z-index: 2;
  max-width: 800px; /* constrain content width */
  margin: 0 auto;
  padding: 0 1rem;
}

.auroraxhq-click-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-heading);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.auroraxhq-click-hero-sub {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-text);
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* ==============================
   BUTTON IN HERO
   ============================== */
.auroraxhq-click-hero .auroraxhq-click-btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.auroraxhq-click-hero .auroraxhq-click-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
  background-color: var(--color-btn-hover);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 992px) {
  .auroraxhq-click-hero-title {
    font-size: 2.5rem;
  }
  .auroraxhq-click-hero-sub {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .auroraxhq-click-hero-title {
    font-size: 2rem;
  }
  .auroraxhq-click-hero-sub {
    font-size: 1rem;
  }
}

/* ==============================
   BUTTONS
   ============================== */
.auroraxhq-click-btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.auroraxhq-click-btn:hover {
  background-color: var(--color-btn-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
}

.auroraxhq-click-small-btn {
  display: inline-block;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.auroraxhq-click-small-btn:hover {
  background-color: var(--color-btn-hover);
  color: var(--color-bg);
}

/* ==============================
   NOTICE CARD
   ============================== */
.auroraxhq-click-notice-card {
  background-color: #3f2e2b;
  color: var(--color-text);
  max-width: 900px;
  border: 2px solid var(--color-accent);
  text-align: left;
}

/* ==============================
   PLAY / GAME SECTION
   ============================== */
.auroraxhq-click-play {
  padding: 4rem 1rem;
  text-align: center;
}

.auroraxhq-click-play .auroraxhq-click-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9135;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Game wrapper */
.auroraxhq-click-game-wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* modern browsers support */
  position: relative;
  background-color: #2f211e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Responsive 16:9 iframe */
.auroraxhq-click-video-ratio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.auroraxhq-click-video-ratio iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .auroraxhq-click-play .auroraxhq-click-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .auroraxhq-click-play .auroraxhq-click-section-title {
    font-size: 1.6rem;
  }

  .auroraxhq-click-game-wrap {
    aspect-ratio: 16 / 9; /* keeps ratio on mobile */
  }
}


/* ==============================
   FEATURES GRID
   ============================== */
.auroraxhq-click-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.auroraxhq-click-feature-card {
  background-color: #3f2e2b;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--color-text);
}

.auroraxhq-click-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.auroraxhq-click-feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* ==============================
   ABOUT SECTION WITH IMAGE
   ============================== */
.auroraxhq-click-about {
  background-color: #4d3834;
  color: #f9b47b;
  padding: 5rem 1rem;
}

.auroraxhq-click-about .auroraxhq-click-section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ff9135;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.auroraxhq-click-about .auroraxhq-click-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.auroraxhq-click-about .auroraxhq-click-body {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.auroraxhq-click-about .auroraxhq-click-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  background-color: #ff9135;
  color: #4d3834;
  transition: all 0.3s ease;
}

.auroraxhq-click-about .auroraxhq-click-btn:hover {
  background-color: #f9b47b;
  transform: translateY(-2px);
}

/* IMAGE STYLING */
.auroraxhq-click-about-image-wrapper {
  position: relative;
}

.auroraxhq-click-about-img {
  width: 100%;
  max-width: 450px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}



/* ==============================
   REVIEWS GRID
   ============================== */
.auroraxhq-click-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.auroraxhq-click-review-card {
  background-color: #3f2e2b;
  padding: 1.75rem;
  border-radius: 12px;
  color: var(--color-text);
  font-style: italic;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auroraxhq-click-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

.auroraxhq-click-review-card h5 {
  margin-top: 1rem;
  font-style: normal;
  color: var(--color-accent);
}

/* ==============================
   CONTACT SECTION
   ============================== */
.auroraxhq-click-contact {
  background-color: #4d3834;
  color: #f9b47b;
  padding: 5rem 1rem;
}

.auroraxhq-click-contact .auroraxhq-click-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9135;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.auroraxhq-click-contact .auroraxhq-click-section-sub {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #f9b47b;
}

.auroraxhq-click-contact-wrapper {
  display: flex;
  gap: 3rem;
}

.auroraxhq-click-contact-info h3 {
  color: #ff9135;
  margin-bottom: 1rem;
}

.auroraxhq-click-contact-info p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.auroraxhq-click-contact-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #f9b47b;
  opacity: 0.85;
}

/* Form Styling */
.auroraxhq-click-contact-form input,
.auroraxhq-click-contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ff9135;
  background-color: #3f2e2b;
  color: #f9b47b;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auroraxhq-click-contact-form input:focus,
.auroraxhq-click-contact-form textarea:focus {
  border-color: #f9b47b;
  outline: none;
}

.auroraxhq-click-contact-form .auroraxhq-click-btn {
  background-color: #ff9135;
  color: #4d3834;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.auroraxhq-click-contact-form .auroraxhq-click-btn:hover {
  background-color: #f9b47b;
  color: #4d3834;
  transform: translateY(-2px);
}

.auroraxhq-click-form-note {
  font-size: 0.85rem;
  color: #f9b47b;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .auroraxhq-click-contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .auroraxhq-click-contact .auroraxhq-click-section-title {
    font-size: 2rem;
  }
}

/* ==============================
   FOOTER
   ============================== */
.auroraxhq-click-footer {
  background-color: #4d3834;
  color: #f9b47b;
  padding: 5rem 1rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.auroraxhq-click-footer-logo {
  max-width: 180px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.auroraxhq-click-footer-logo-link:hover .auroraxhq-click-footer-logo {
  transform: scale(1.05);
}

.auroraxhq-click-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.auroraxhq-click-footer-nav a {
  color: #f9b47b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auroraxhq-click-footer-nav a:hover {
  color: #ff9135;
  text-shadow: 0 0 8px #ff9135;
}

/* Disclaimer Section */
.auroraxhq-click-footer-disclaimer {
  background-color: #3f2e2b;
  color: #f9b47b;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  text-align: left;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.auroraxhq-click-footer-disclaimer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff9135;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auroraxhq-click-footer-disclaimer p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Footer Copyright */
.auroraxhq-click-footer-copy {
  font-size: 0.875rem;
  opacity: 0.85;
  line-height: 1.5;
  margin-top: 1rem;
}

.auroraxhq-click-footer-copy a {
  color: #ff9135;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auroraxhq-click-footer-copy a:hover {
  text-shadow: 0 0 8px #ff9135;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auroraxhq-click-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .auroraxhq-click-footer-disclaimer {
    text-align: center;
  }
}


/* ==============================
   AURORAXHQ.CLICK DISCLAIMER POPUP
   ============================== */

/* Full-screen overlay */
.auroraxhq-click-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.auroraxhq-click-popup.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Inner popup card */
.auroraxhq-click-popup-inner {
  background-color: #3f2e2b;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: #f9b47b;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}

.auroraxhq-click-popup.active .auroraxhq-click-popup-inner {
  transform: translateY(0);
}

/* Title */
.auroraxhq-click-popup-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff9135;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

/* Text */
.auroraxhq-click-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #f9b47b;
}

/* Buttons container */
.auroraxhq-click-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Buttons */
.auroraxhq-click-popup-buttons .auroraxhq-click-btn {
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  background-color: #ff9135;
  color: #4d3834;
}

.auroraxhq-click-popup-buttons .auroraxhq-click-btn:hover {
  background-color: #f9b47b;
  color: #4d3834;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
}

/* Exit button specific style */
.auroraxhq-click-popup-buttons #auroraxhqExit {
  background-color: #ff3d3d;
  color: #fff;
}

.auroraxhq-click-popup-buttons #auroraxhqExit:hover {
  background-color: #ff5a5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .auroraxhq-click-popup-inner {
    padding: 2rem 1.5rem;
  }

  .auroraxhq-click-popup-title {
    font-size: 1.6rem;
  }

  .auroraxhq-click-popup-text {
    font-size: 0.95rem;
  }

  .auroraxhq-click-popup-buttons .auroraxhq-click-btn {
    min-width: 100px;
    padding: 0.65rem 1.25rem;
  }
}


/* ==============================
   SCROLL TO TOP BUTTON
   ============================== */
.auroraxhq-click-scroll {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: none;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
}

.auroraxhq-click-scroll:hover {
  background-color: var(--color-btn-hover);
  color: var(--color-bg);
}

/* ==============================
   ALERTS
   ============================== */
.auroraxhq-click-alert {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.auroraxhq-click-alert.error {
  background-color: #ff3d3d;
}

.auroraxhq-click-alert.success {
  background-color: #28a745;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 992px) {
  .auroraxhq-click-contact-grid {
    grid-template-columns: 1fr;
  }

  .auroraxhq-click-features-grid {
    grid-template-columns: 1fr;
  }

  .auroraxhq-click-reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .auroraxhq-click-hero-title {
    font-size: 2.2rem;
  }

  .auroraxhq-click-hero-sub {
    font-size: 1rem;
  }

  .auroraxhq-click-section-title {
    font-size: 2rem;
  }
}



/* ==============================
   LEGAL PAGES (Disclaimer, Privacy, Terms)
   ============================== */
.auroraxhq-click-legal {
  background-color: #4d3834; /* site background */
  color: #f9b47b; /* main text */
  font-family: 'Poppins', sans-serif;
  padding: 5rem 1rem;
  line-height: 1.8;
}

.auroraxhq-click-legal h1,
.auroraxhq-click-legal h2,
.auroraxhq-click-legal h3 {
  color: #ff9135; /* headings */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.auroraxhq-click-legal h1 {
  font-size: 2.75rem;
  text-align: center;
}

.auroraxhq-click-legal h2 {
  font-size: 2rem;
}

.auroraxhq-click-legal h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.auroraxhq-click-legal p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #f9b47b;
}

.auroraxhq-click-legal a {
  color: #ff9135;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auroraxhq-click-legal a:hover {
  text-shadow: 0 0 8px #ff9135;
}

.auroraxhq-click-legal .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Section Spacing */
.auroraxhq-click-legal h3 + p {
  margin-top: 0.5rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .auroraxhq-click-legal h1 {
    font-size: 2rem;
  }
  .auroraxhq-click-legal h2 {
    font-size: 1.75rem;
  }
  .auroraxhq-click-legal h3 {
    font-size: 1.25rem;
  }
  .auroraxhq-click-legal p {
    font-size: 1rem;
  }
}

/* Optional subtle background accent */
.auroraxhq-click-legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(255,145,53,0.05), transparent 70%);
  pointer-events: none;
}
