/* =========================================
   Sagaquest.bond – Global Styles
   ========================================= */

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body.sq-bond {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #88cdff; /* site background */
  color: #181c8e; /* text color */
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #181c8e;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.section-sub {
  font-size: 1rem;
  color: #181c8e;
  opacity: 0.9;
}

/* ===============================
   Navbar Styles (Sagaquest.bond)
   =============================== */
.sq-bond-navbar {
  background-color: #88cdff; /* site background */
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #181c8e;
}

.sq-bond-logo {
  height: 70px;
  max-height: 100%;
}

/* Toggler */
.sq-bond-toggler {
  border: none;
  font-size: 1.5rem;
  color: #181c8e;
  background: transparent;
}
.sq-bond-toggler:focus {
  outline: none;
  box-shadow: none;
}
.sq-bond-toggler .fa-bars {
  color: #181c8e;
}

/* Nav links */
.sq-bond-nav .nav-link {
  color: #181c8e; /* text */
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, background 0.3s ease;
}

.sq-bond-nav .nav-link:hover,
.sq-bond-nav .nav-link:focus {
  color: #88cdff;              /* button text color */
  background-color: #0008ff;   /* hover effect */
  border-radius: 6px;
}

.sq-bond-nav .nav-link.active {
  font-weight: 600;
  border-bottom: 2px solid #181c8e;
}


/* =========================================
   Buttons
   ========================================= */
.sq-bond-btn {
  display: inline-block;
  background: #181c8e;
  color: #88cdff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.sq-bond-btn:hover {
  background: #0008ff;
  color: #88cdff;
}

.sq-bond-btn--ghost {
  background: transparent;
  border: 2px solid #181c8e;
  color: #181c8e;
}

.sq-bond-btn--ghost:hover {
  background: #181c8e;
  color: #88cdff;
}

.sq-bond-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===============================
   Hero Section (Sagaquest.bond)
   =============================== */
.sq-bond-hero {
  position: relative;
  height: 90vh;                 /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.sq-bond-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(180deg, rgba(136,205,255,0.1) 0%, rgba(24,28,142,0.1) 100%),
    url("../img/hero-bg.jpg") center top / cover no-repeat; /* hero image */
  z-index: -1;
}

.sq-bond-hero-content {
  max-width: 800px;             /* contain width */
  margin: 0 auto;
  color: #181c8e;               /* text color */
  padding: 1rem;
}

.sq-bond-hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #181c8e;
  margin-bottom: 1rem;
}

.sq-bond-hero-content p {
  font-size: 1.2rem;
  color: #181c8e;
 
}


.sq-bond-hero-inner {
  max-width: 800px;  /* contain text width */
  margin: 0 auto;
  padding: 0 1rem;
  z-index: 1;
}


/* =========================================
   Cards (reused)
   ========================================= */
.sq-bond-card {
  background: #88cdff;
  border: 2px solid #181c8e;
  border-radius: 8px;
  padding: 1.5rem;
  color: #181c8e;
}

.sq-bond-card--center {
  text-align: center;
}

/* =========================================
   Disclaimer
   ========================================= */
.sq-bond-disclaimer {
  padding: 4rem 1rem;
  text-align: center;
}

/* =========================================
   Game Section
   ========================================= */
.sq-bond-game {
  padding: 4rem 1rem;
}

.sq-bond-game-frame {
  max-width: 900px;
  margin: 0 auto;
}

.sq-bond-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.sq-bond-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   Features
   ========================================= */
.sq-bond-features {
  padding: 4rem 1rem;
}

.sq-bond-feature {
  text-align: center;
}

.sq-bond-feature-icon {
  font-size: 2rem;
  color: #181c8e;
  margin-bottom: 1rem;
}

.sq-bond-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
}

/* ===============================
   About Section (Sagaquest.bond)
   =============================== */
.sq-bond-about {
  padding: 4rem 1rem;
  background: #88cdff; /* site background */
  color: #181c8e;
}

.sq-bond-about .container {
  max-width: 800px;   /* contain text width */
  margin: 0 auto;
}

.sq-bond-about-media {
  text-align: center;
}

.sq-bond-about-img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  display: inline-block;
}

/* Headings */
.sq-bond-about .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #181c8e;
}

/* Sub text */
.sq-bond-about .section-sub {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #181c8e;
}

/* Paragraphs */
.sq-bond-about p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #181c8e;
}

/* Button */
.sq-bond-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: #181c8e;
  color: #88cdff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.sq-bond-btn:hover {
  background: #0008ff;
  color: #ffffff;
}


/* ===============================
   Reviews Section
   =============================== */
.sq-bond-reviews {
  padding: 4rem 1rem;
  background: #88cdff;
}

.sq-bond-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.sq-bond-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sq-bond-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Review header */
.sq-bond-review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.sq-bond-avatar {
  background: #181c8e;
  color: #88cdff;
  font-weight: bold;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sq-bond-review-name {
  font-size: 1.1rem;
  color: #181c8e;
  margin: 0;
}

/* Review text */
.sq-bond-review-text {
  font-size: 0.95rem;
  color: #181c8e;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Stars */
.sq-bond-stars {
  font-size: 1rem;
  color: #181c8e;
}


/* ===============================
   Footer
   =============================== */
.sq-bond-footer {
  color: #ffffff;
  padding: 3rem 1rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.sq-bond-footer-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
}

/* Footer nav */
.sq-bond-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.sq-bond-footer-link {
  color: #2431a1;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}

.sq-bond-footer-link:hover {
  color: #ffffff;
  border-bottom: 2px solid #88cdff;
}

/* Disclaimer box */
.sq-bond-footer-disclaimer {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: #2431a1; /* lighter navy */
  border-radius: 12px;
  color: #f3faff;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.sq-bond-footer-disclaimer h5 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #88cdff;
}

/* Copyright */
.sq-bond-footer-copy {
  font-size: 0.85rem;
  color: #2431a1;
  margin-top: 1.5rem;
  opacity: 0.85;
}

/* =========================================
   Age Popup
   ========================================= */
.sq-bond-age-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 28, 142, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.sq-bond-age-popup-content {
  background: #88cdff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
}

.sq-bond-age-popup-title {
  margin-bottom: 1rem;
}

.sq-bond-age-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* =========================================
   Scroll to Top
   ========================================= */
.sq-bond-scrolltop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #181c8e;
  color: #88cdff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.sq-bond-scrolltop:hover {
  background: #0008ff;
}



/* ===============================
   Contact Section
   =============================== */
.sq-bond-contact {
  padding: 4rem 1rem;
  background: #88cdff;
  color: #181c8e;
}

.sq-bond-contact .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #181c8e;
}

.sq-bond-contact .section-sub {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #181c8e;
}

/* Form */
.sq-bond-contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.sq-bond-form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.sq-bond-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #181c8e;
}

.sq-bond-form-group input,
.sq-bond-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #181c8e;
  border-radius: 8px;
  font-size: 1rem;
  color: #181c8e;
  background: #f3faff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sq-bond-form-group input:focus,
.sq-bond-form-group textarea:focus {
  outline: none;
  border-color: #0008ff;
  box-shadow: 0 0 6px rgba(0, 8, 255, 0.3);
}

/* Button */
.sq-bond-contact-form .sq-bond-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  border-radius: 10px;
  background: #181c8e;
  color: #88cdff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sq-bond-contact-form .sq-bond-btn:hover {
  background: #0008ff;
  transform: translateY(-2px);
}


/* ===============================
   Legal Pages (Disclaimer / Privacy / Terms)
   =============================== */
.sq-bond-legal {
  padding: 4rem 1rem;
  background: #88cdff; /* Site background */
  color: #181c8e; /* Text color */
}

.sq-bond-legal .legal-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #181c8e; /* Heading color */
}

.sq-bond-legal h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #181c8e; /* Heading color */
}

.sq-bond-legal p {
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #181c8e; /* Text color */
}

.sq-bond-legal a {
  color: #181c8e; /* Accent link */
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.sq-bond-legal a:hover {
  color: #0008ff; /* Button hover */
}

.sq-bond-legal .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Buttons inside legal pages (if used) */
.sq-bond-legal .sq-bond-btn {
  display: inline-block;
  background: #181c8e; /* Button color */
  color: #88cdff; /* Button text */
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.sq-bond-legal .sq-bond-btn:hover {
  background: #0008ff; /* Hover background */
  color: #88cdff; /* Keep text contrast */
}
