/* ================================
   Wildretreat.cfd Base Colors & Font
=================================== */

/* Import Unique Web Font */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

/* --------------------------
   Global Styles
--------------------------- */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #391344; /* site background */
  color: #f3cae3; /* default text */
}

h1, h2, h3, h4, h5, h6 {
  color: #ff85d0; /* headings */
  font-family: 'Raleway', sans-serif;
}

p, span, li, a, div {
  color: #f3cae3; /* text */
}

/* --------------------------
   Links
--------------------------- */
a {
  color: #ff85d0; /* active links */
  text-decoration: none;
}

a:hover, a:focus {
  color: #d3dadf; /* hover effect for buttons and links */
}

/* --------------------------
   Buttons
--------------------------- */
button, .btn {
  background-color: #ff85d0; /* button background */
  color: #391344; /* button text */
  font-family: 'Raleway', sans-serif;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #d3dadf; /* hover background */
  color: #391344; /* text remains dark */
}

/* --------------------------
   Form Inputs
--------------------------- */
input, textarea, select {
  font-family: 'Raleway', sans-serif;
  color: #391344;
  background-color: #f3cae3;
  border: 1px solid #ff85d0;
  border-radius: 6px;
  padding: 8px 12px;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: #ff85d0;
}

/* --------------------------
   Utility Colors
--------------------------- */
.text-heading { color: #ff85d0; }
.text-accent { color: #ff85d0; }
.bg-accent { background-color: #ff85d0; }
.bg-site { background-color: #391344; }
.text-default { color: #f3cae3; }




/* ==========================
   Navbar - Wildretreat.cfd
========================== */
.wildretreat-navbar {
  background: #391344; /* site background */
  padding: 15px 0; /* reduced padding */
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.wildretreat-logo {
  max-height: 80px;
  height: auto;
  display: block;
  margin: 4 auto;
}

.navbar-toggler {
  border: none;
  color: #ff85d0; /* accent */
  font-size: 1.5rem;
}

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

.navbar-nav {
  margin-top: 5px; /* reduced space above links */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
}

.navbar-nav .nav-item {
  margin: 0 12px; /* smaller horizontal spacing */
}

.navbar-nav .nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #f3cae3; /* text */
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-align: center;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ff85d0; /* headings / accent */
}

@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    margin-top: 8px; /* small space below logo on mobile */
  }

  .navbar-nav .nav-item {
    margin: 6px 0; /* vertical spacing between items */
  }
}


/* ==========================
   Hero Section - Wildretreat.cfd
========================== */
.wildretreat-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f3cae3; /* text color */
}

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

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

.wildretreat-hero-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #ff85d0; /* headings */
  margin-bottom: 20px;
}

.wildretreat-hero-title span {
  color: #ff85d0;
}

.wildretreat-hero-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #f3cae3;
  margin-bottom: 30px;
}

.wildretreat-hero-btn {
  background-color: #ff85d0; /* button bg */
  color: #391344; /* button text */
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wildretreat-hero-btn:hover {
  background-color: #d3dadf; /* hover */
  color: #391344;
}


/* ==========================
   Disclaimer Section - Wildretreat.cfd
========================== */
.wildretreat-disclaimer-section {
  padding: 80px 20px;
  background: #391344; /* site background */
  text-align: center;
}

.wildretreat-disclaimer-card {
  background: #391344;
  border: 3px solid #ff85d0; /* accent border */
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.wildretreat-disclaimer-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ff85d0; /* headings */
  margin-bottom: 20px;
}

.wildretreat-disclaimer-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #f3cae3; /* text */
  margin-bottom: 30px;
  line-height: 1.6;
}

.wildretreat-disclaimer-btn {
  display: inline-block;
  background-color: #ff85d0;
  color: #391344;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wildretreat-disclaimer-btn:hover {
  background-color: #d3dadf;
  color: #391344;
}


/* ==========================
   Game Section - Wildretreat.cfd
========================== */
.wildretreat-game-section {
  padding: 80px 20px;
  background: #391344; /* site background */
  text-align: center;
}

.wildretreat-game-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0; /* headings */
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wildretreat-game-card {
  display: inline-block;
  width: 100%;
  max-width: 960px; /* original game width */
  border: 4px solid #ff85d0; /* accent border */
  border-radius: 12px;
  overflow: hidden;
  background: #391344;
  box-sizing: border-box;
}

.wildretreat-game-card iframe {
  width: 100%;
  height: 600px; /* original height */
  max-width: 100%;
  max-height: 90vh; /* limits vertical overflow on small screens */
  border: none;
  border-radius: 12px;
}



/* ================================
   Wildretreat Features Section
=================================== */
.wildretreat-features-section {
  background: #391344; /* site background */
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.wildretreat-features-title {
  font-family: 'Raleway', sans-serif; /* unique web font */
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0; /* headings */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wildretreat-features-subtext {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #f3cae3; /* text */
  margin-top: 10px;
}

.wildretreat-feature-card {
  background: #391344; /* match site bg */
  border: 2px solid #ff85d0; /* accent border */
  border-radius: 16px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wildretreat-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 133, 208, 0.4);
}

.wildretreat-feature-icon {
  color: #ff85d0; /* accent color */
  margin-bottom: 15px;
}

.wildretreat-feature-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #ff85d0; /* headings */
  margin-bottom: 10px;
}

.wildretreat-feature-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #f3cae3; /* text */
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wildretreat-features-title {
    font-size: 2rem;
  }
  .wildretreat-feature-card {
    padding: 20px;
  }
  .wildretreat-feature-text {
    font-size: 0.9rem;
  }
}



/* ================================
   About Section - Wildretreat.cfd
=================================== */
.wildretreat-about-section {
  padding: 80px 20px;
  background: #391344; /* site background */
  text-align: center;
  position: relative;
  z-index: 1;
}

.wildretreat-about-title {
  font-family: 'Raleway', sans-serif; /* unique web font */
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0; /* headings */
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wildretreat-about-paragraph {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #f3cae3; /* text color */
  line-height: 1.8;
  margin-bottom: 20px;
}

.wildretreat-about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #391344; /* button text */
  background-color: #ff85d0; /* button color */
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wildretreat-about-btn:hover {
  background-color: #d3dadf; /* button hover */
  color: #391344;
}

.wildretreat-about-image {
  margin-top: 40px;
}

.wildretreat-about-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}


/* ================================
   Reviews Section - Wildretreat.cfd
=================================== */
.wildretreat-reviews {
  background: #391344;
  padding: 80px 20px;
  text-align: center;
}

.wildretreat-reviews-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.wildretreat-reviews-subtext {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #f3cae3;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.wildretreat-review-card {
  background: #2f194f;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wildretreat-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.wildretreat-review-header {
  display: flex;
  align-items: center;
}

.wildretreat-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff85d0;
  color: #391344;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.wildretreat-review-name {
  color: #ff85d0;
  font-weight: 700;
  font-size: 1.2rem;
}

.wildretreat-review-text {
  color: #f3cae3;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.wildretreat-review-stars {
  color: #ff85d0;
  margin-top: 10px;
  font-size: 1rem;
}


/* ================================
   Footer - Wildretreat.cfd
=================================== */
.wildretreat-footer {
  background: #391344;
  color: #f3cae3;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

.wildretreat-footer-logo-img {
  max-width: 180px;
  height: auto;
}

.wildretreat-footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wildretreat-footer-link {
  color: #ff85d0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.wildretreat-footer-link:hover {
  color: #d3dadf;
}

.wildretreat-footer-disclaimer-title {
  color: #ff85d0;
  font-weight: 700;
  margin-bottom: 8px;
}

.wildretreat-footer-disclaimer-text {
  color: #f3cae3;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.wildretreat-footer-bottom {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #f3cae3;
}



/* ================================
   Age / Disclaimer Popup
=================================== */
.wildretreat-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36,19,68,0.95); /* site bg with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.wildretreat-age-popup-content {
  background: #391344;
  color: #f3cae3;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.wildretreat-age-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff85d0;
  margin-bottom: 15px;
}

.wildretreat-age-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.wildretreat-age-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.wildretreat-btn {
  background: #ff85d0;
  color: #391344;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wildretreat-btn:hover {
  background: #d3dadf;
}

.wildretreat-btn-decline {
  background: transparent;
  border: 2px solid #ff85d0;
  color: #ff85d0;
}

.wildretreat-btn-decline:hover {
  background: #ff85d0;
  color: #391344;
}

/* ================================
   Scroll to Top Button
=================================== */
.wildretreat-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #ff85d0;
  color: #391344;
  font-size: 1.5rem;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1500;
}

.wildretreat-scroll-top:hover {
  background: #d3dadf;
  color: #391344;
}


/* ================================
   Contact Section - Wildretreat Colors
=================================== */
.wildretreat-contact-section {
  background: #391344;
  padding: 80px 20px;
  text-align: center;
}

.wildretreat-contact-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0;
  margin-bottom: 20px;
}

.wildretreat-contact-subtext {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #f3cae3;
  margin-bottom: 40px;
}

.wildretreat-contact-card {
  background: #391344;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.wildretreat-contact-form .form-control {
  background: #2e1955;
  color: #f3cae3;
  border: 1px solid #ff85d0;
  border-radius: 8px;
  padding: 10px 12px;
}

.wildretreat-contact-form .form-control::placeholder {
  color: #d3dadf;
}

.wildretreat-contact-btn {
  background: #ff85d0;
  color: #391344;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.wildretreat-contact-btn:hover {
  background: #d3dadf;
  color: #391344;
}


.wildretreat-disclaimer-section {
  background: #391344;
  padding: 80px 20px;
  color: #f3cae3;
  font-family: 'Raleway', sans-serif;
}

.wildretreat-disclaimer-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.wildretreat-disclaimer-content h4 {
  font-weight: 600;
  color: #ff85d0;
  margin-bottom: 10px;
}

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



.wildretreat-privacy-section,
.wildretreat-terms-section {
  background: #391344;
  padding: 80px 20px;
  color: #f3cae3;
  font-family: 'Raleway', sans-serif;
}

.wildretreat-privacy-title,
.wildretreat-terms-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #ff85d0;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.wildretreat-privacy-content h4,
.wildretreat-terms-content h4 {
  font-weight: 600;
  color: #ff85d0;
  margin-bottom: 10px;
}

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