
/* ================== Global Styles ================== */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Unique system font */
  background-color: #94c57f;
  color: #f8fff5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #c85103;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #f8fff5;
}

h1, h2, h3, h4, h5, h6 {
  color: #c85103;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

/* ================== Navbar ================== */
.snow-today-navbar {
  background-color: #94c57f
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
  position: relative; /* no fixed or sticky */
}

.snow-today-logo {
  height: 80px;
  width: auto;
}

/* Brand */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fff5 !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .fas {
  font-size: 1.5rem;
}

/* Nav List */
.snow-today-navlist {
  gap: 1rem;
}

/* Nav Links */
.snow-today-navbar .nav-link {
  color: #c85103;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: background 0.3s ease, color 0.3s ease;
}

.snow-today-navbar .nav-link:hover {
  background: #f8fff5;
  color: #94c57f;
}

.snow-today-navbar .nav-link.active {
  background: #c85103;
  color: #f8fff5;
  font-weight: 600;
}

/* ================== Responsive ================== */
@media (max-width: 991.98px) {
  .snow-today-navlist {
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
  }
  .snow-today-navbar .nav-link {
    width: 100%;
    text-align: center;
  }
}


/* ================== Hero Section ================== */
.snow-today-hero {
  height: 80vh;                            /* fills most of the screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  background: url("../images/header-bg.jpg") 
              no-repeat center center/cover; /* hero image */
  color: #f8fff5;                           /* site text color */
  position: relative;
}

.snow-today-hero-heading {
  font-size: 3rem;
  text-shadow: 2px 2px #286181;
}

.snow-today-hero-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 1rem auto;
}


/* ================== Buttons ================== */
.snow-today-btn {
  background: #c85103;       /* default button background */
  color: #f8fff5;            /* button text */
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.snow-today-btn:hover {
  background: #f8fff5;       /* hover background */
  color: #286181;            /* hover text color */
  border: 2px solid #c85103; /* keeps brand accent visible */
}


/* ================== Disclaimer Section ================== */
.snow-today-disclaimer {
  background: #94c57f; /* site background */
  color: #f8fff5;
}

.snow-today-disclaimer-card {
  background: #a7d48f; /* softer green, close to site bg but lighter */
  color: #1d2e1b; /* darker green text for readability */
  max-width: 800px;
  border: 2px solid #c85103; /* accent border */
  border-radius: 1.5rem;
}

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

.snow-today-section-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1d2e1b;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .snow-today-section-title {
    font-size: 1.6rem;
  }
  .snow-today-section-text {
    font-size: 1rem;
  }
  .snow-today-disclaimer-card {
    padding: 2rem 1.5rem;
  }
}

/* ================== Game Section ================== */
.snow-today-game {
  background: #94c57f; /* site background */
  color: #f8fff5;
  padding: 5rem 1rem;
}

.snow-today-game .snow-today-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c85103; /* accent color */
}

.snow-today-game .snow-today-section-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #f8fff5; /* readable dark teal */
}

/* Game Card */
.snow-today-game-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9; /* keeps iframe proportional */
  border: 3px solid #c85103;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Iframe responsive */
.snow-today-game-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .snow-today-game {
    padding: 3rem 1rem;
  }

  .snow-today-game .snow-today-section-title {
    font-size: 1.6rem;
  }

  .snow-today-game .snow-today-section-text {
    font-size: 1rem;
  }
}


/* ================== Features Section ================== */
.snow-today-features {
  background: #94c57f; /* site background */
  padding: 5rem 1rem;
  color: #f8fff5; /* text color */
}

.snow-today-features .snow-today-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c85103; /* heading color */
  margin-bottom: 1rem;
}

.snow-today-feature-subtext {
  font-size: 1.1rem;
  color: #f8fff5; /* standard text */
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Card */
.snow-today-feature-card {
  background: #7cae67; /* slightly darker shade of site bg for contrast */
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  color: #f8fff5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover Effect */
.snow-today-feature-card:hover {
  transform: translateY(-8px);
  background: #6a9d56; /* darker hover shade */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Icons */
.snow-today-feature-card i {
  color: #c85103; /* accent color */
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.snow-today-feature-card:hover i {
  color: #f8fff5; /* switch to text color */
}

/* Headings inside cards */
.snow-today-feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #c85103; /* heading accent */
}

/* Paragraphs inside cards */
.snow-today-feature-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #f8fff5; /* text color */
}

/* Responsive */
@media (max-width: 768px) {
  .snow-today-features {
    padding: 3rem 1rem;
  }

  .snow-today-features .snow-today-section-title {
    font-size: 1.6rem;
  }

  .snow-today-feature-card {
    padding: 1.5rem 1rem;
  }

  .snow-today-feature-card h4 {
    font-size: 1.2rem;
  }
}


/* ================== About Section ================== */
.snow-today-about {
  background: #94c57f; /* site background */
  color: #f8fff5; /* default text */
  padding: 5rem 1rem;
}

.snow-today-about .snow-today-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c85103; /* heading color */
  margin-bottom: 2rem;
}

.snow-today-about-text-wrapper {
  max-width: 750px;
  margin: 0 auto 2rem auto;
}

.snow-today-about-text {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #f8fff5; /* text color */
}

/* Image Styling */
.snow-today-about-img-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.snow-today-about-img {
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Hover effect for image */
.snow-today-about-img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .snow-today-about {
    padding: 3rem 1rem;
  }

  .snow-today-about .snow-today-section-title {
    font-size: 1.6rem;
  }

  .snow-today-about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ================== Reviews Section ================== */
.snow-today-reviews {
  background: #94c57f; /* site background */
  padding: 5rem 1rem;
  color: #f8fff5;
}

.snow-today-reviews .snow-today-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c85103;
  margin-bottom: 1rem;
}

.snow-today-reviews-intro {
  font-size: 1.1rem;
  color: #f8fff5;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Review Card */
.snow-today-review-card {
  background: #7cae67; /* slightly darker shade than site bg */
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  color: #f8fff5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snow-today-review-card:hover {
  transform: translateY(-6px);
  background: #6a9d56; /* darker hover shade */
}

/* Icon */
.snow-today-review-card i {
  color: #c85103; /* accent */
  margin-bottom: 1rem;
}

/* Text */
.snow-today-review-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.snow-today-review-card h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c85103;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .snow-today-reviews {
    padding: 3rem 1rem;
  }

  .snow-today-reviews .snow-today-section-title {
    font-size: 1.6rem;
  }

  .snow-today-review-card {
    padding: 1.5rem 1rem;
  }
}


/* ================== Footer ================== */
.snow-today-footer {
  background-color: #a7d48f !important; /* FORCE site background green */
  color: #1d2e1b !important;
  font-size: 0.95rem;
  padding: 3rem 1rem;
}

.snow-today-footer-logo {
  max-width: 160px;
  height: auto;
}

.snow-today-footer-heading {
  color: #c85103 !important; /* accent headings */
  font-size: 1.2rem;
  font-weight: 700;
}

.snow-today-footer-text {
  color: #1d2e1b !important;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.snow-today-footer-link {
  color: #1d2e1b !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.snow-today-footer-link:hover {
  color: #c85103 !important;
}

hr.snow-today-divider {
  border-top: 1px solid rgba(248, 255, 245, 0.3);
  margin: 2rem 0;
}

.snow-today-footer-bottom {
  color: #1d2e1b !important;
}

.snow-today-footer-credit {
  color: #c85103 !important;
  text-decoration: none;
  font-weight: 600;
}

.snow-today-footer-credit:hover {
  color: #f8fff5 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .snow-today-footer {
    text-align: center;
  }

  .snow-today-footer-heading {
    margin-top: 1rem;
  }
}


/* ================== Contact Section ================== */
.snow-today-contact {
  padding: 4rem 1rem;
  text-align: center;
}
.snow-today-contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.snow-today-contact-form input,
.snow-today-contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #286181;
  font-size: 1rem;
}
.snow-today-contact-form button {
  width: 100%;
}

/* ================== Legal Pages ================== */
.snow-today-legal {
  padding: 4rem 1rem;
}
.snow-today-legal h2 {
  margin-top: 2rem;
}
.snow-today-legal p {
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: justify;
}


/* ================== Age Popup Overlay ================== */
.snow-today-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 97, 129, 0.85); /* soft dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
}

/* Popup Box */
.snow-today-age-popup-box {
  background: #94c57f; /* site background */
  color: #f8fff5;      /* text color */
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.snow-today-age-popup-box h2 {
  color: #c85103; /* heading accent */
}

.snow-today-age-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f8fff5;
}

/* Popup Buttons */
.snow-today-age-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}



.snow-today-btn.outlined {
  background: transparent;
  border: 2px solid #c85103;
  color: #c85103;
}

.snow-today-btn.outlined:hover {
  background: #c85103;
  color: #286181;
}

/* ================== Scroll to Top ================== */
.snow-today-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #c85103;
  color: #286181;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 1500;
}

.snow-today-scroll-top:hover {
  background: #f8fff5;
  color: #286181;
}

.snow-today-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ================== Responsive ================== */
@media (max-width: 992px) {
  .snow-today-hero-heading {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .snow-today-navbar .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .snow-today-hero-heading {
    font-size: 2rem;
  }
  .snow-today-about-img {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .snow-today-hero-heading {
    font-size: 1.8rem;
  }
  .snow-today-hero-text {
    font-size: 1rem;
  }
}


/* ================= Legal Pages ================= */
.snow-today-legal {
  background: #94c57f; /* site background */
  color: #f8fff5;
}

.snow-today-legal-text {
  background: #7caf68; /* slightly darker than background for contrast */
  padding: 2rem;
  border-radius: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #f8fff5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.snow-today-legal-text p {
  margin-bottom: 1.2rem;
}

.snow-today-legal-text strong {
  color: #c85103; /* accent */
}

/* Responsive */
@media (max-width: 768px) {
  .snow-today-legal-text {
    padding: 1.5rem;
    font-size: 1rem;
  }
}
