/* Import new font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");

/* Root Variables */
:root {
  --color-heading: #f79916;
  --color-text: #ffffff;
  --color-accent: #f79916;
  --color-btn-bg: #f79916;
  --color-btn-text: #382f2f;
  --color-link-active: #f79916;
  --color-bg: #382f2f;
}

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

html,
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
}

p {
  color: var(--color-text);
  font-weight: 400;
}

/* Utility */
.text-center {
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Global Navbar Styles */
.site-navbar {
  background-color: #382f2f;
  padding: 0.8rem 1rem;
}

.site-logo {
  max-height: 75px;
}

.site-toggler-icon {
  color: #f79916;
  font-size: 1.5rem;
}

/* Navigation Links */
.site-nav-link {
  color: #ffffff;
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar .site-nav-link.active,
.navbar .site-nav-link:hover {
  color: var(--color-accent);
}

/* Button Styles */
.site-btn {
  background-color: #f79916;
  color: #382f2f;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.site-btn:hover {
  background-color: #ffffff;
  color: #382f2f;
}

/* Hero Section */
.site-hero {
  position: relative;
  height: 90vh;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text);
}

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

.site-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.site-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-heading);
}

.site-hero-subtext {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* Disclaimer Section */
.site-disclaimer-section {
  background-color: #382f2f;
  color: var(--color-text);
}

.site-disclaimer-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.site-disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
}

.site-disclaimer-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.site-disclaimer-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.site-disclaimer-text a:hover {
  color: #fff;
}

/* Game Section */
.site-game-section {
  background-color: #382f2f;
  color: var(--color-text);
}

.site-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
}

.site-section-subtitle {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
}

.site-game-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
}

.site-game-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================
   Features Section
========================= */
.features-section {
  background-color: var(--site-bg);
  color: #ffffff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f79916;
}

.section-subtitle {
  font-size: 1rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Card */
.feature-card {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  color: #f79916;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-text {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}

:root {
  --heading-color: #f79916;
  --text-color: #ffffff;
  --accent-color: #f79916;
  --button-bg: #f79916;
  --button-text: #382f2f;
  --button-hover: #ffffff; /* Inverted for hover effect */
  --button-hover-bg: #a13d14; /* Darker tone for hover */
  --active-link: #f79916;
  --site-bg: #382f2f;
}

/* =========================
   About Section
========================= */
.about-section {
  background-color: var(--site-bg);
  color: var(--text-color);
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.accent-text {
  color: var(--accent-color);
  font-weight: 600;
}

/* Button */
.btn-custom {
  background-color: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: var(--button-hover-bg);
  color: var(--button-hover);
}

/* About Image */
.about-image img {
  max-width: 500px;
  margin: 20px auto 0;
  display: block;
  border-radius: 12px;
}

/* =========================
   Reviews Section
========================= */
.reviews-section {
  background-color: var(--site-bg);
  color: var(--text-color);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.review-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-card i {
  color: var(--accent-color);
}

/* =========================
   Footer (2-column layout)
========================= */
.site-footer {
  background-color: #382f2f; /* Site background */
  color: #ffffff; /* Text color */
  font-size: 0.95rem;
}

.footer-logo img {
  max-height: 80px;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f79916; /* Accent for headings */
}

.footer-text {
  color: #ffffff;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #f79916; /* Accent color */
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.15) !important;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
}

/* =========================
   Age Disclaimer Popup
========================= */
.age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #382f2f; /* Dark overlay */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-popup-box {
  background: #382f2f; /* Site background */
  padding: 2rem;
  max-width: 600px;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.age-popup-title {
  color: #f79916; /* Heading color */
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.age-popup-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.age-popup-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn.age-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn.yes {
  background-color: #f79916; /* Accent button */
  color: #382f2f; /* Dark text */
}

.age-btn.yes:hover {
  background-color: #ffae42; /* Hover lighter */
}

.age-btn.no {
  background-color: transparent;
  border: 2px solid #f79916;
  color: #f79916;
}

.age-btn.no:hover {
  background-color: #f79916;
  color: #382f2f;
}

/* =========================
   Scroll to Top Button
========================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background-color: #f79916; /* Accent */
  color: #382f2f; /* Dark arrow */
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
  z-index: 1000;
}

.scroll-top:hover {
  background-color: #ffae42; /* Lighter on hover */
  transform: translateY(-3px);
}

.scroll-arrow {
  font-size: 1.4rem;
  line-height: 1;
}

/* =========================
   Contact Section
========================= */
.contact-section {
  background-color: #382f2f; /* Site background */
  color: #ffffff; /* Text */
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #f79916; /* Headings */
}

.section-subtext {
  font-size: 1rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #f79916;
  border-radius: 8px;
  background-color: #382f2f;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ffae42;
  outline: none;
  box-shadow: 0 0 8px rgba(247, 153, 22, 0.6);
}

.btn-submit {
  background-color: #f79916;
  color: #382f2f;
  font-weight: bold;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #ffae42;
  transform: translateY(-2px);
}
