/* ------------------------------
   Base CSS for Roamknot247.sbs
------------------------------- */

/* Site Colors */
:root {
  --roam-sbs-heading-color: #dba974;
  --roam-sbs-text-color: #ffdca8;
  --roam-sbs-accent-color: #dba974;
  --roam-sbs-button-bg: #dba974;
  --roam-sbs-button-text: #013515;
  --roam-sbs-button-hover-bg: #c2935f; /* Slightly darker accent for hover */
  --roam-sbs-link-active: #dba974;
  --roam-sbs-bg: #013515;
}

/* ------------------------------
   Global Typography
------------------------------- */
body,
.roam-sbs-body {
  background-color: var(--roam-sbs-bg);
  color: var(--roam-sbs-text-color);
  font-family: 'Poppins', sans-serif; /* Replace with your chosen new font if different */
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6,
.roam-sbs-heading {
  color: var(--roam-sbs-heading-color);
  font-family: 'Poppins', sans-serif;
  margin: 0 0 15px 0;
}

/* Paragraphs and general text */
p,
.roam-sbs-text {
  color: var(--roam-sbs-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

/* ------------------------------
   Links
------------------------------- */
a,
.roam-sbs-link {
  color: var(--roam-sbs-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
.roam-sbs-link:hover {
  color: var(--roam-sbs-accent-color);
}

a.active,
.roam-sbs-link-active {
  color: var(--roam-sbs-link-active);
}

/* ------------------------------
   Buttons
------------------------------- */
button,
.roam-sbs-btn {
  background-color: var(--roam-sbs-button-bg);
  color: var(--roam-sbs-button-text);
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover,
.roam-sbs-btn:hover {
  background-color: var(--roam-sbs-button-hover-bg);
  color: var(--roam-sbs-button-text);
}

/* ------------------------------
   Utility Classes
------------------------------- */
.text-center,
.roam-sbs-text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}


/* ---------- Navbar ---------- */
.roam-sbs-navbar {
  background-color: #013515; /* site background */
  font-family: 'Poppins', sans-serif;
  padding: 1rem 0;
  z-index: 999;
}

/* Container */
.roam-sbs-navbar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.roam-sbs-navbar-logo {
  max-height: 76px;
  display: block;
  margin: 0 auto;
}

/* Nav Links */
.roam-sbs-nav-menu .nav-link {
  color: #ffdca8; /* text color */
  font-weight: 600;
  margin: 0 0.75rem;
  transition: color 0.3s;
  text-decoration: none;
}

.roam-sbs-nav-menu .nav-link:hover {
  color: #dba974; /* accent color on hover */
}

/* Active link */
.roam-sbs-nav-menu .nav-link.active {
  color: #dba974; /* active link color */
}

/* Mobile toggle button */
.roam-sbs-toggler {
  border: none;
}

.roam-sbs-toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffdca8;
  position: relative;
  transition: all 0.3s;
}

.roam-sbs-toggler-icon::before,
.roam-sbs-toggler-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #ffdca8;
  transition: all 0.3s;
}

.roam-sbs-toggler-icon::before {
  top: -10px;
}

.roam-sbs-toggler-icon::after {
  bottom: -10px;
}

/* Navbar collapse for mobile */
@media (max-width: 992px) {
  .roam-sbs-nav-menu {
    text-align: center;
    margin-top: 1rem;
  }
  .roam-sbs-nav-menu .nav-link {
    display: block;
    margin: 0.5rem 0;
  }
}


/* Hero Section */
.roam-sbs-hero-section {
    position: relative;
    background-color: #013515;
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

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

.roam-sbs-hero-content {
    position: relative;
    z-index: 2;
    color: #ffdca8;
    max-width: 800px;
    padding: 0 15px;
}

.roam-sbs-hero-title {
    font-size: 2.8rem;
    color: #dba974;
    font-weight: 700;
    margin-bottom: 20px;
}

.roam-sbs-hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffdca8;
}

.roam-sbs-hero-btn {
    background-color: #dba974;
    color: #013515;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.roam-sbs-hero-btn:hover {
    background-color: #ffdca8;
    color: #013515;
    transform: translateY(-3px);
}


/* Disclaimer Section */
.roam-sbs-disclaimer-section {
    padding: 80px 15px;
    background: transparent; /* no section background */
    font-family: 'Poppins', sans-serif;
}

.roam-sbs-disclaimer-card {
    background-color: #013515;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    color: #ffdca8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

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

.roam-sbs-disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffdca8;
    margin-bottom: 30px;
}

.roam-sbs-disclaimer-btn {
    background-color: #dba974;
    color: #013515;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.roam-sbs-disclaimer-btn:hover {
    background-color: #e6bb86; /* lighter accent on hover */
    color: #013515;
    transform: translateY(-3px);
}


/* Game Section */
.roam-sbs-game-section {
    padding: 80px 15px;
    background: transparent; /* no section background */
    font-family: 'Poppins', sans-serif;
}

.roam-sbs-game-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dba974;
    margin-bottom: 15px;
}

.roam-sbs-game-subtext {
    font-size: 1.1rem;
    color: #ffdca8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.roam-sbs-game-frame iframe {
    width: 100%;
    max-width: 900px;
    height: 500px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}



/* Game Features Section */
.roam-sbs-features-section {
    padding: 80px 15px;
    background: linear-gradient(135deg, #351f01 0%, #42270a 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Title and Subtext */
.roam-sbs-features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dba974;
    position: relative;
    z-index: 2;
}
.roam-sbs-features-subtext {
    font-size: 1.1rem;
    color: #ffdca8;
    line-height: 1.6;
    margin-bottom: 50px;
    z-index: 2;
    position: relative;
}

/* Feature Cards */
.roam-sbs-feature-card {
    background: rgba(219, 169, 116, 0.08);
    border: 1px solid #dba97433;
    border-radius: 20px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.roam-sbs-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-color: #dba974;
}

/* Icon Styling */
.roam-sbs-feature-icon {
    font-size: 2.5rem;
    color: #dba974;
    transition: color 0.3s, text-shadow 0.3s;
}
.roam-sbs-feature-card:hover .roam-sbs-feature-icon {
    color: #ffdca8;
    text-shadow: 0 0 10px #dba974, 0 0 20px #ffdca8;
}

/* Feature Title */
.roam-sbs-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #dba974;
    margin-bottom: 10px;
}

/* Feature Text */
.roam-sbs-feature-text {
    color: #ffdca8;
    font-size: 1rem;
    line-height: 1.5;
}

/* Subtle glowing effect in background */
.roam-sbs-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(219,169,116,0.07) 0%, transparent 70%);
    pointer-events: none;
}



/* Reviews Section */
.realm-reviews {
    padding: 80px 15px;
    background: #013515;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.realm-reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dba974;
    margin-bottom: 15px;
}
.realm-reviews-subtext {
    font-size: 1.1rem;
    color: #ffdca8;
    margin-bottom: 50px;
}

/* Review Card Layout */
.realm-review-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Avatar with glowing effect */
.realm-review-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(219, 169, 116, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #dba974;
    box-shadow: 0 0 15px rgba(219, 169, 116, 0.5);
}

/* Speech bubble */
.realm-review-bubble {
    background: rgba(219, 169, 116, 0.08);
    border: 1px solid #dba97444;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realm-review-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Bubble arrow */
.realm-review-bubble::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -12px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent rgba(219, 169, 116, 0.1) transparent transparent;
}

/* Review Texts */
.realm-review-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dba974;
    margin-bottom: 8px;
}
.realm-review-text {
    font-size: 0.95rem;
    color: #ffdca8;
    line-height: 1.5;
    margin-bottom: 10px;
}
.realm-review-stars {
    color: #ffd77a;
    font-size: 1.1rem;
}

a:hover {
  background-color:#c68b52;
  box-shadow:0 0 10px rgba(219,169,116,0.6);
}


/* Footer Section */
.site-footer {
  background-color: #013515;
  padding: 50px 20px;
  text-align: center;
  color: #ffdca8;
}

/* Logo */
.footer-logo-img {
  max-width: 160px;
  margin: 0 auto;
  display: block;
}
.footer-tagline {
  margin-top: 10px;
  font-size: 1rem;
  color: #ffdca8;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
   padding-bottom: 10px !important;

}
.footer-links .footer-link {
  color: #dba974;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-links .footer-link:hover {
  color: #ffdca8;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffdca8;
}
.footer-disclaimer strong {
  color: #dba974;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ffdca8;
}


/* Scroll to Top */
.roamknot-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #dba974;
  color: #013515;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 999;
}
.roamknot-scroll-top:hover {
  background: #ffdca8;
  color: #013515;
}

/* Popup Overlay */
.roamknot-age-popup {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 31, 1, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup Content */
.roamknot-age-popup-content {
  background: #013515;
  color: #ffdca8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  animation: popupFade 0.4s ease;
}
.roamknot-age-popup-title {
  color: #dba974;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.roamknot-age-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.roamknot-age-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.roamknot-btn {
  padding: 10px 20px;
  background: #dba974;
  color: #013515;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.roamknot-btn:hover {
  background: #ffdca8;
}
.roamknot-btn-decline {
  background: #ffdca8;
  color: #013515;
}
.roamknot-btn-decline:hover {
  background: #dba974;
  color: #013515;
}

/* Fade Animation */
@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* Contact Section */
.contact-section {
  background: #013515;
  padding: 80px 20px;
  text-align: center;
}

.contact-title {
  font-size: 2.2rem;
  color: #dba974;
  margin-bottom: 15px;
}

.contact-subtext {
  color: #ffdca8;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 30px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #dba974;
  border-radius: 8px;
  background: transparent;
  color: #ffdca8;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ffdca8;
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffdca8;
}

.contact-btn {
  background: #dba974;
  color: #013515;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #ffdca8;
  color: #013515;
}

.contact-extra {
  margin-top: 20px;
  color: #ffdca8;
  font-size: 0.95rem;
}

.contact-extra a {
  color: #dba974;
  text-decoration: none;
  font-weight: 600;
}

.contact-extra a:hover {
  text-decoration: underline;
}


/* Disclaimer Page Styles for Roamknot247.sbs */
.disclaimer-section {
  background-color: #013515;
  color: #ffdca8;
  padding: 60px 20px;
  text-align: left;
  line-height: 1.8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 2.2rem;
  color: #dba974;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.disclaimer-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ffdca8;
}

.disclaimer-heading {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #dba974;
  font-weight: 600;
  border-left: 4px solid #dba974;
  padding-left: 12px;
}

.disclaimer-section p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #ffdca8;
}

.disclaimer-footer {
  margin-top: 40px;
  font-size: 1rem;
  text-align: center;
  border-top: 1px solid rgba(219, 169, 116, 0.4);
  padding-top: 20px;
  color: #ffdca8;
}

.disclaimer-footer a {
  color: #dba974;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer-footer a:hover {
  text-decoration: underline;
  color: #ffdca8;
  transition: 0.3s ease;
}


/* Shared Styles for Privacy & Terms Pages */
.privacy-section,
.terms-section {
  background-color: #013515;
  color: #ffdca8;
  padding: 60px 20px;
  line-height: 1.8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.privacy-section .container,
.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title,
.terms-title {
  font-size: 2.2rem;
  color: #dba974;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.privacy-intro,
.terms-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ffdca8;
}

.privacy-heading,
.terms-heading {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #dba974;
  font-weight: 600;
  border-left: 4px solid #dba974;
  padding-left: 12px;
}

.privacy-section p,
.terms-section p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #ffdca8;
}

.privacy-section ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #ffdca8;
}

.privacy-footer,
.terms-footer {
  margin-top: 40px;
  font-size: 1rem;
  text-align: center;
  border-top: 1px solid rgba(219, 169, 116, 0.4);
  padding-top: 20px;
  color: #ffdca8;
}

.privacy-footer a,
.terms-footer a {
  color: #dba974;
  text-decoration: none;
  font-weight: 600;
}

.privacy-footer a:hover,
.terms-footer a:hover {
  text-decoration: underline;
  color: #ffdca8;
  transition: 0.3s ease;
}
