/* Trekspire247.xyz Base CSS */
/* Font */
body {
  font-family: 'Poppins', sans-serif; 
  background-color: #6a6c09; /* Site background */
  color: #ebdeb4; /* Default text */
  margin: 0;
  padding: 0;
}

/* Headings */
.trek-247-heading, 
h1, h2, h3, h4, h5, h6 {
  color: #f9852f; /* Headings color */
  margin: 0 0 15px 0;
  font-weight: 600;
}

/* Paragraphs & General Text */
.trek-247-text, p, li, span {
  color: #ebdeb4;
  line-height: 1.6;
}

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

a:hover,
a:focus,
a:active {
  color: #f9852f; /* Active links */
}

/* Buttons */
.trek-247-btn {
  background-color: #f9852f;
  color: #6a6c09; /* Button text */
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trek-247-btn:hover {
  background-color: #ebdeb4; /* Hover effect */
  color: #6a6c09;
}

/* Accents */
.trek-247-accent {
  color: #f9852f;
}


/* Trekspire247 Navbar */
.trek-247-navbar {
  background-color: #6a6c09; /* Site background */
  border-bottom: 2px solid #f9852f;
}

.trek-247-navbar .trek-247-navbar-logo {
  max-height: 80px;
}

.trek-247-navbar .nav-link {
  color: #ebdeb4;
  font-weight: 600;
  padding: 8px 15px;
  margin: 5px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 6px;
}

.trek-247-navbar .nav-link:hover,
.trek-247-navbar .nav-link:focus {
  color: #6a6c09;
  background-color: #f9852f;
}

.trek-247-navbar .nav-link.active {
  color: #f9852f;
  font-weight: 700;
}

/* Toggler (mobile) */
.trek-247-toggler {
  border: none;
}

.trek-247-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(249,133,47, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Hero Section */
.trek-247-hero-section {
  position: relative;
  color: #ebdeb4;
}

.trek-247-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(108, 49, 9, 0.2); /* Dark overlay */
}

.trek-247-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.trek-247-hero-title {
  color: #f9852f;
  max-width: 800px;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.trek-247-hero-text {
  color: #ebdeb4;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.trek-247-hero-btn {
  background-color: #f9852f;
  color: #6a6c09;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trek-247-hero-btn:hover {
  background-color: #ebdeb4;
  color: #6a6c09;
}


/* Disclaimer Section */
.disclaimer-section {
  padding: 60px 20px;
  background-color: #6a6c09; /* Site background */
}

.disclaimer-card {
  background-color: rgba(235, 222, 180, 0.05); /* Light overlay card */
  border: 2px solid #f9852f;
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.disclaimer-title {
  color: #f9852f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.disclaimer-text {
  color: #ebdeb4;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.disclaimer-btn {
  background-color: #f9852f;
  color: #6a6c09;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.disclaimer-btn:hover {
  background-color: #ebdeb4;
  color: #6a6c09;
}


/* Game Section */
.game-section {
  padding: 60px 20px;
  background-color: #6a6c09; /* Site background */
}

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

.game-subtext {
  color: #ebdeb4;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* Game Frame (Responsive Iframe) */
.game-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 3px solid #f9852f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.game-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
  background-color: #000; /* fallback */
  border-radius: 12px;
}

/* Responsive Height */
@media (max-width: 992px) {
  .game-frame iframe {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .game-frame iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .game-frame iframe {
    height: 300px;
  }
}


/* Features Section */
.features-section {
  padding: 70px 20px;
  background-color: #6a6c09; /* Dark site background */
}

.features-title {
  color: #f9852f;
  font-size: 2.2rem;
  font-weight: 700;
}

.features-subtext {
  color: #ebdeb4;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background-color: rgba(235, 222, 180, 0.05); /* subtle overlay */
  border: 2px solid #f9852f;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
  background-color: rgba(249, 133, 47, 0.1); /* orange glow */
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Feature Icons */
.feature-icon {
  font-size: 2.5rem;
  color: #f9852f;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

/* Feature Titles */
.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f9852f;
  margin-bottom: 10px;
}

/* Feature Text */
.feature-text {
  font-size: 1rem;
  color: #ebdeb4;
  line-height: 1.6;
}


/* =========================
   About Section
========================= */
.about-section {
  padding: 80px 20px;
  color: #f5f5f5;
  position: relative;
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05; /* subtle spooky texture overlay */
  z-index: -1;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff7518; /* Halloween orange */
  text-shadow: 0 0 10px rgba(255, 117, 24, 0.6);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e6e6e6;
  margin-bottom: 18px;
}

.about-text strong {
  color: #ffae42; /* lighter orange for emphasis */
}

.about-image {
  margin-bottom: 30px;
}

.about-img {
  max-width: 340px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(255, 117, 24, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 117, 24, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-img {
    max-width: 180px;
  }
}


/* =========================
   Reviews Section Styling
   ========================= */
.review-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0b0b0b, #1a0f0f);
  color: #fff;
}

.review-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff7518; /* pumpkin orange */
  text-shadow: 0 0 8px rgba(255, 117, 24, 0.6);
}

.review-card {
  background: rgba(25, 15, 15, 0.9);
  border: 2px solid #ff7518;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 117, 24, 0.2);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 117, 24, 0.6);
}

.review-avatar {
  font-size: 3rem;
  color: #ff7518;
  text-shadow: 0 0 10px rgba(255, 117, 24, 0.8);
}

.review-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
  min-height: 80px;
}

.review-stars {
  font-size: 1rem;
  margin-top: 10px;
  color: #ffcc33; /* glowing yellow stars */
  text-shadow: 0 0 6px rgba(255, 204, 51, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .review-title {
    font-size: 1.8rem;
  }
  .review-card {
    padding: 20px;
  }
}

/* =========================
   Footer Styling
   ========================= */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a, #1a0f0f);
  color: #ddd;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 160px;
  filter: drop-shadow(0 0 10px rgba(255, 117, 24, 0.6));
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #ff7518;
  font-style: italic;
  text-shadow: 0 0 6px rgba(255, 117, 24, 0.7);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ff7518;
  text-shadow: 0 0 6px rgba(255, 117, 24, 0.7);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-link:hover {
  color: #ffcc33;
  text-shadow: 0 0 8px rgba(255, 204, 51, 0.8);
}

.footer-disclaimer p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-disclaimer a {
  color: #ffcc33;
  font-weight: bold;
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  color: #fff176;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 117, 24, 0.3);
  margin-top: 40px;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto;
  }
}



/* =========================
   Scroll to Top Button
========================= */
.trek-247-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f9852f; /* pumpkin orange */
  color: #6a6c09; /* dark text */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 15px rgba(249, 133, 47, 0.7);
  transition: all 0.3s ease;
}

.trek-247-scroll-top:hover {
  background-color: #ffcc33;
  color: #6a6c09;
  box-shadow: 0 0 25px rgba(255, 204, 51, 0.9);
  transform: translateY(-3px);
}

/* =========================
   Age / Disclaimer Popup
========================= */
.trek-247-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.trek-247-age-popup-content {
  background-color: #1a0f0f;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 30px rgba(249, 133, 47, 0.7);
  color: #ebdeb4;
  position: relative;
}

.trek-247-age-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f9852f;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(249, 133, 47, 0.7);
}

.trek-247-age-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ebdeb4;
  margin-bottom: 25px;
}

.trek-247-age-popup-text strong {
  color: #ffcc33;
}

.trek-247-age-popup-text a {
  color: #ffcc33;
  font-weight: bold;
  text-decoration: underline;
}

.trek-247-age-popup-text a:hover {
  color: #fff176;
}

.trek-247-age-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trek-247-btn {
  background-color: #f9852f;
  color: #6a6c09;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(249, 133, 47, 0.6);
}

.trek-247-btn:hover {
  background-color: #ffcc33;
  color: #6a6c09;
  box-shadow: 0 0 25px rgba(255, 204, 51, 0.9);
  transform: translateY(-2px);
}

.trek-247-btn-decline {
  background-color: #6a6c09;
  color: #f9852f;
  border: 1px solid #f9852f;
}

.trek-247-btn-decline:hover {
  background-color: #450f03;
  color: #ff7518;
  border-color: #ff7518;
}



/* =========================
   Contact Section
========================= */
.trek-247-contact-section {
  padding: 80px 20px;
  color: #ebdeb4;
}

.trek-247-contact-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f9852f;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(249, 133, 47, 0.7);
}

.trek-247-contact-subtext {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #ebdeb4;
}

.trek-247-contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.trek-247-contact-form input,
.trek-247-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #f9852f;
  border-radius: 8px;
  background-color: #1a0f0f;
  color: #ebdeb4;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.trek-247-contact-form input:focus,
.trek-247-contact-form textarea:focus {
  border-color: #ffcc33;
  box-shadow: 0 0 15px rgba(255, 204, 51, 0.5);
  outline: none;
}

.trek-247-btn-submit {
  background-color: #f9852f;
  color: #6a6c09;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(249, 133, 47, 0.7);
}

.trek-247-btn-submit:hover {
  background-color: #ffcc33;
  color: #6a6c09;
  box-shadow: 0 0 25px rgba(255, 204, 51, 0.9);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .trek-247-contact-title {
    font-size: 1.8rem;
  }
  .trek-247-contact-form textarea {
    font-size: 0.95rem;
  }
}



/* =========================
   Disclaimer Page Styling
========================= */
.trek-247-disclaimer-page {
  padding: 80px 20px;
  color: #ebdeb4;
  text-align: center;
}

.trek-247-disclaimer-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f9852f;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(249, 133, 47, 0.7);
}

.trek-247-disclaimer-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ebdeb4;
}

.trek-247-disclaimer-text a {
  color: #ffcc33;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.trek-247-disclaimer-text a:hover {
  color: #fff176;
}


/* =========================
   Privacy & Terms Pages
========================= */
.trek-247-privacy-page,
.trek-247-terms-page {
  padding: 80px 20px;
  color: #ebdeb4;
  text-align: center;
}

.trek-247-privacy-title,
.trek-247-terms-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f9852f;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(249, 133, 47, 0.7);
}

.trek-247-privacy-subtitle,
.trek-247-terms-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #ffcc33;
}

.trek-247-privacy-text,
.trek-247-terms-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ebdeb4;
}

.trek-247-privacy-text a,
.trek-247-terms-text a {
  color: #ffcc33;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.trek-247-privacy-text a:hover,
.trek-247-terms-text a:hover {
  color: #fff176;
}

.trek-247-privacy-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #ebdeb4;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
