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

/* Body and Background */
body {
  font-family: 'Poppins', sans-serif; 
  background-color: #f8fdca;
  color: #093a63;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #093a63;
  font-weight: 700;
  line-height: 1.3;
}

/* Paragraphs & Text */
p, span, li, a {
  color: #093a63;
  font-weight: 400;
}

/* Links */
a {
  color: #093a63;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover, a:focus {
  color: #f57b8d;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #f57b8d;
  color: #093a63;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover, .btn:focus {
  background-color: #093a63;
  color: #f57b8d;
}

/* Utility Classes */
.text-accent {
  color: #f57b8d;
}

.bg-accent {
  background-color: #f57b8d;
}

.bg-primary {
  background-color: #093a63;
  color: #fff;
}

.bg-light {
  background-color: #f8fdca;
}


/* ==============================
   Navbar Styles - Questhollow247
   ============================== */

/* Navbar Base */
.site-navbar {
  background-color: #f8fdca; /* site background */
  border-bottom: 2px solid #093a63; /* subtle accent line */
}

.navbar-container {
  max-width: 1200px;
}

/* Logo */
.navbar-logo {
  max-height: 70px;
  width: auto;
}

/* Nav Menu */
.nav-menu .nav-link {
  color: #093a63;
  font-weight: 600;
  margin: 0 0.75rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover + Focus */
.nav-menu .nav-link:hover,
.nav-menu .nav-link:focus {
  color: #f57b8d;
  background-color: transparent;
}

/* Active Link */
.nav-menu .nav-link.active {
  color: #f57b8d;
  border-bottom: 2px solid #f57b8d;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  background: none;
  color: #093a63;
  font-size: 1.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .nav-menu {
    margin-top: 1rem;
  }

  .nav-menu .nav-link {
    display: block;
    margin: 0.5rem 0;
  }
}


/* ============================
   Hero Section - Questhollow247
   ============================ */

/* Section Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  color: #fff;
}

/* Title */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #093a63;
  margin-bottom: 1rem;
}

/* Text */
.hero-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #093a63;
}

/* Button */
.hero-btn {
  background-color: #f57b8d;
  color: #093a63;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover,
.hero-btn:focus {
  background-color: #093a63;
  color: #f57b8d;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-text {
    font-size: 1rem;
  }
}


/* ============================
   Disclaimer Section Styles
   ============================ */
.disclaimer-section {
  padding: 4rem 1rem;
  background-color: #f8fdca; /* site background */
}

.disclaimer-card {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 800px;
}

.disclaimer-title {
  color: #093a63;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.disclaimer-text {
  color: #093a63;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Button */
.disclaimer-btn {
  background-color: #f57b8d;
  color: #093a63;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.disclaimer-btn:hover,
.disclaimer-btn:focus {
  background-color: #093a63;
  color: #f57b8d;
}


/* ============================
   Game Section Styles
   ============================ */
.game-section {
  padding: 4rem 1rem;
  background-color: #f8fdca;
}

.game-title {
  font-size: 2rem;
  font-weight: 700;
  color: #093a63;
}

.game-subtext {
  font-size: 1rem;
  color: #093a63;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.game-frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 600px; 
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.game-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 1rem;
}


/* ============================
   Features Section Styles
   ============================ */
.features-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #093a63;
}

.features-subtext {
  font-size: 1rem;
  color: #093a63;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-card {
  background: #f8fdca;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: #f57b8d;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #093a63;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.95rem;
  color: #093a63;
  line-height: 1.5;
}

/* ============================
   About Section Styles
   ============================ */
.about-section {
  padding: 4rem 1rem;
  background-color: #f8fdca;
}

.about-image img {
  max-width: 450px;
  height: auto;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #093a63;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: #093a63;
  line-height: 1.7;
  margin-bottom: 1rem;
}


/* ============================
   Reviews Section Styles
   ============================ */
.review-section {
  padding: 4rem 1rem;
  background-color: #f8fdca;
}

.review-title {
  font-size: 2rem;
  font-weight: 700;
  color: #093a63;
}

.review-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.review-avatar i {
  font-size: 3rem;
  color: #f57b8d;
}

.review-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #093a63;
}

.review-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-stars {
  color: #093a63;
  font-size: 1.1rem;
}



/* Footer Base */
.site-footer {
  background-color: #f8fdca; /* site background */
  padding: 40px 20px;
  text-align: center;
  font-family: inherit;
  color: #093a63; /* default text color */
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 40px;
}
.footer-disclaimer p {
  font-size: 15px;
  color: #093a63; /* site text color */
  line-height: 1.6;
}
.footer-disclaimer .footer-link {
  color: #f57b8d; /* accent color */
  text-decoration: none;
  font-weight: 500;
}
.footer-disclaimer .footer-link:hover {
  color: #093a63; /* heading/text color on hover */
  text-decoration: underline;
}

/* Section Titles */
.footer-title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #093a63; /* heading color */
}

/* Links */
.footer-links {
  margin-bottom: 40px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* spacing between links */
}
.footer-links a {
  color: #f57b8d; /* accent by default */
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  font-weight: 500;
}
.footer-links a:hover,
.footer-links a:focus,
.footer-links a:active {
  color: #093a63; /* active/hover matches headings */
}

/* Logo */
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-height: 70px;
}

/* Bottom Bar */
.footer-bottom {
  font-size: 13px;
  color: #093a63; /* text color */
  margin-top: 20px;
}



/* Scroll to Top Button */
.site-scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f57b8d; /* accent */
  color: #093a63; /* button text */
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}
.site-scroll-top:hover {
  background: #093a63; /* invert colors */
  color: #ffffff;
}

/* Age Popup Overlay */
.site-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 58, 99, 0.8); /* semi-transparent overlay */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Age Popup Box */
.site-age-popup-content {
  background: #ffffff;
  padding: 30px;
  max-width: 500px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}
.site-age-popup-title {
  color: #093a63;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.site-age-popup-text {
  color: #093a63;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Popup Buttons */
.site-btn {
  background: #f57b8d;
  color: #093a63;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.site-btn:hover {
  background: #093a63;
  color: #ffffff;
}
.site-btn-decline {
  background: #093a63;
  color: #ffffff;
}
.site-btn-decline:hover {
  background: #f57b8d;
  color: #093a63;
}


/* Contact Section */
.site-contact-section {
  background: #f8fdca; /* site background */
  padding: 60px 20px;
}

.site-contact-title {
  color: #093a63; /* heading color */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-contact-subtext {
  color: #093a63; /* text color */
  font-size: 16px;
  margin-bottom: 30px;
}

.site-contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.site-input {
  border: 2px solid #093a63;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  width: 100%;
  font-size: 15px;
  color: #093a63;
}

.site-input:focus {
  border-color: #f57b8d;
  outline: none;
  box-shadow: 0 0 6px rgba(245, 123, 141, 0.4);
}



/* Shared Legal Sections (Disclaimer, Privacy, Terms) */
.site-legal-section {
  background-color: #f8fdca; /* site background */
  padding: 60px 20px;
}

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

.site-legal-title {
  font-size: 2rem;
  color: #093a63; /* headings color */
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.site-legal-content {
  background: #ffffff; /* white card for content */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #093a63; /* text color */
}

.site-legal-content h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #093a63; /* headings */
  border-left: 4px solid #f57b8d; /* accent line */
  padding-left: 10px;
}

.site-legal-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #093a63; /* text */
}

.site-legal-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.site-legal-content ul li {
  margin-bottom: 10px;
  color: #093a63;
}

.site-legal-content a {
  color: #f57b8d; /* accent links */
  text-decoration: none;
  font-weight: 600;
}

.site-legal-content a:hover {
  text-decoration: underline;
  color: #093a63; /* hover = site text color */
}

