/* Reset & Base */
body.svaliq-today-body {
  background-color: #5c2200;
  color: #f7cb67;
  margin: 0;
  scroll-behavior: smooth;
}

/* =========================
   Headings: Alternative Style
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Chakra Petch', sans-serif; /* Modern, angular, stylish */
  color: #ff7828;
  font-weight:600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 2px 2px 4px rgba(92, 34, 0, 0.7);
}

/* Text stroke / outline for standout effect */
h1, h2 {
  -webkit-text-stroke: 1px #5c2200;
  text-stroke: 1px #5c2200;
}

h3, h4, h5, h6 {
  -webkit-text-stroke: 0.7px #5c2200;
  text-stroke: 0.7px #5c2200;
}

/* Decorative underline for H2 and H3 */
h2::after, h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff7828;
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 0.95rem; }
}

/* ========================
   Navbar Base
======================== */
.svaliq-today-navbar {
  background-color: #5c2200;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.svaliq-today-navbar .svaliq-today-brand img {
  max-height: 60px;
  transition: transform 0.3s;
}

.svaliq-today-navbar .svaliq-today-brand img:hover {
  transform: scale(1.05);
}

/* ========================
   Navbar Links
======================== */
.svaliq-today-navbar .navbar-nav .nav-link {
  color: #f7cb67;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.svaliq-today-navbar .navbar-nav .nav-link.active,
.svaliq-today-navbar .navbar-nav .nav-link:hover {
  color: #ff7828;
  text-shadow: 1px 1px 2px #5c2200;
}

.svaliq-today-navbar .navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ff7828;
  transition: width 0.3s;
  margin-top: 5px;
}

.svaliq-today-navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ========================
   Navbar Toggler
======================== */
.navbar-toggler {
  border: none;
  outline: none;
  color: #f7cb67;
  font-size: 1.5rem;
  background-color: #5c2200;
  transition: color 0.3s, background-color 0.3s;
}

.navbar-toggler:hover {
  color: #ff7828;
  background-color: #5c2200;
}

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

/* Toggler icon (FontAwesome) */
.navbar-toggler .fas.fa-bars {
  color: #f7cb67;
}

.navbar-toggler:hover .fas.fa-bars {
  color: #ff7828;
}

/* ========================
   Navbar Collapse / Responsive
======================== */
@media (max-width: 767px) {
  .svaliq-today-navbar .navbar-nav {
    flex-direction: column;
    gap: 10px;
    background-color: #5c2200;
    width: 100%;
    padding: 15px 0;
  }

  .svaliq-today-navbar .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 10px 15px;
  }

  /* Add subtle border between links */
  .svaliq-today-navbar .navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 120, 40, 0.3);
  }
}

/* ========================
   Navbar Shadow & Hover Effects
======================== */
.svaliq-today-navbar {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.svaliq-today-navbar .nav-link:hover {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========================
   Active Link Indicator
======================== */
.svaliq-today-navbar .nav-link.active::after {
  width: 100%;
}


/* =========================
   Buttons: Svaliq.today
========================= */
.btn-svaliq {
  background-color: #ff7828;
  color: #5c2200;
  border: 2px solid #ff7828;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect: subtle gradient + shadow */
.btn-svaliq:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #ff7828 100%);
  color: #5c2200;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Active state: pressed effect */
.btn-svaliq:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Focus state for accessibility */
.btn-svaliq:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 120, 40, 0.5);
}

/* Optional: small ripple effect on click */
.btn-svaliq::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
  transform: skewX(-20deg);
}

.btn-svaliq:hover::after {
  left: 100%;
}

/* Responsive button text */
@media (max-width: 768px) {
  .btn-svaliq {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* =========================
   Hero Section
========================= */
.svaliq-today-hero {
  position: relative;
  height: 80vh; /* 90% of viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: #5c2200 url('../images/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.svaliq-today-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 34, 0, 0.6); /* dark overlay for text readability */
  z-index: 1;
}

/* Hero Content */
.svaliq-today-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px; /* contained width */
  margin: 0 auto;
  padding: 0 15px;
}

.svaliq-today-hero .hero-title {
  font-family: 'Chakra Petch', sans-serif; 
  font-size: 3rem;
  font-weight: 700;
  color: #ff7828;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.svaliq-today-hero .hero-sub {
  font-family: 'Rubik', sans-serif;
  font-size: 1.25rem;
  color: #f7cb67;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
  .svaliq-today-hero {
    height: 80vh;
    padding: 0 15px;
  }
  .svaliq-today-hero .hero-title {
    font-size: 2.2rem;
  }
  .svaliq-today-hero .hero-sub {
    font-size: 1rem;
  }
  .svaliq-today-hero .hero-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}


/* Cards */
.svaliq-today-card,
.svaliq-today-game-card,
.feature-card,
.review-card {
  background-color: #5c2200;
  border: 1px solid #ff7828;
  color: #f7cb67;
  transition: transform 0.3s, box-shadow 0.3s;
}
.svaliq-today-card:hover,
.svaliq-today-game-card:hover,
.feature-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* =========================
   Game Section
========================= */
.svaliq-today-play {
  padding: 60px 20px;
  background-color: #5c2200;
}


/* Game container */
.svaliq-today-game {
  max-width: 900px;
  margin: 0 auto;
}

/* Game card */
.svaliq-today-game-card {
  background-color: #5c2200;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  padding: 0;
}

/* Game frame: 16:9 aspect ratio */
.svaliq-today-game-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  background-color: #5c2200;
}

.svaliq-today-game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .svaliq-today-play {
    padding: 40px 15px;
  }
  .svaliq-today-play .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .svaliq-today-game-card {
    margin-bottom: 20px;
  }
}

/* Features Icons */
.feature-icon {
  font-size: 2.5rem;
  color: #ff7828;
  margin-bottom: 15px;
}

/* =========================
   Reviews Section
========================= */
.svaliq-today-reviews {
  background-color: #5c2200;
  padding: 60px 20px;
  color: #f7cb67;
}

.svaliq-today-reviews .section-text {
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Review carousel container */
.review-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.review-carousel {
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease;
}

/* Individual review card */
.review-card {
  background-color: #5c2200;
  border: 1px solid rgba(255, 188, 88, 0.3);
  border-radius: 12px;
  padding: 20px;
  flex-shrink: 0;
  min-width: 250px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.review-card .review-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #f7cb67;
}

.review-card .reviewer-meta .reviewer-name {
  font-weight: 600;
  color: #ff7828;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .review-card {
    min-width: 200px;
    padding: 15px;
  }
  .svaliq-today-reviews .section-title {
    font-size: 2rem;
  }
  .svaliq-today-reviews .section-text {
    font-size: 1rem;
  }
}
/* =========================
   Infinite Review Carousel
========================= */

/* Carousel wrapper */
.review-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

/* Carousel container */
.review-carousel {
  display: flex;
  gap: 15px;
  animation: scrollReviews 20s linear infinite;
}

/* Duplicate items for seamless loop */
.review-carousel > .review-card {
  flex-shrink: 0;
}

/* Keyframes for continuous horizontal scroll */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* =========================
   Contact Section
========================= */
.svaliq-today-contact {
  background-color: #5c2200;
  border: 2px solid #ff7828;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.svaliq-today-contact .svaliq-today-input {
  background-color: #5c2200;
  color: #f7cb67;
  border: 1px solid #ff7828;
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s;
}

.svaliq-today-contact .svaliq-today-input::placeholder {
  color: #f7cb67;
  opacity: 0.7;
}

.svaliq-today-contact .svaliq-today-input:focus {
  border-color: #f7cb67;
  outline: none;
  box-shadow: 0 0 10px rgba(255, 120, 40, 0.5);
}

.svaliq-today-contact .btn-svaliq {
  margin-top: 15px;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.svaliq-today-contact .btn-svaliq:hover {
  background-color: #f7cb67;
  color: #5c2200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}



/* Section text */
#contact .section-text {
  font-size: 1.125rem;
  margin-bottom: 25px;
  color: #f7cb67;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .svaliq-today-contact {
    padding: 20px 15px;
  }
  #contact .section-title {
    font-size: 1.9rem;
  }
  #contact .section-text {
    font-size: 1rem;
  }
}


/* =========================
   Footer
========================= */
.svaliq-today-footer {
  background-color: #5c2200;
  color: #f7cb67;
  padding: 60px 20px;
  font-family: 'Rubik', system-ui, sans-serif;
}

.svaliq-today-footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

/* Footer disclaimer/message */
.svaliq-today-footer-disclaimer {
  background-color: rgba(255, 120, 40, 0.05);
  border: 1px solid rgba(255, 120, 40, 0.3);
  border-radius: 12px;
  padding: 20px 25px;
  line-height: 1.7;
}

.svaliq-today-footer-disclaimer .footer-heading {
  color: #ff7828;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.svaliq-today-footer-disclaimer .footer-disclaimer-text {
  color: #f7cb67;
  font-size: 0.975rem;
}

/* Quick Links */
.svaliq-today-footer-links {
  padding-left: 0;
  margin: 0;
}

.svaliq-today-footer-links li {
  margin-bottom: 10px;
}

.svaliq-today-footer-links a {
  color: #f7cb67;
  text-decoration: none;
  transition: 0.3s;
}

.svaliq-today-footer-links a:hover {
  color: #ff7828;
}

/* Divider */
.svaliq-today-footer-divider {
  border-color: rgba(255, 120, 40, 0.3);
}

/* Footer bottom text */
.svaliq-today-footer-bottom {
  font-size: 0.875rem;
  color: #f7cb67;
}

.svaliq-today-footer-bottom a {
  color: #ff7828;
  text-decoration: none;
  transition: 0.3s;
}

.svaliq-today-footer-bottom a:hover {
  color: #f7cb67;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .svaliq-today-footer {
    padding: 40px 15px;
  }
  .svaliq-today-footer-disclaimer {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}

/* =========================
   Scroll to Top Button
========================= */
.svaliq-today-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #ff7828;
  color: #5c2200;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.svaliq-today-scroll-top:hover {
  background-color: #f7cb67;
  color: #5c2200;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .svaliq-today-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}


/* =========================
   Disclaimer Popup
========================= */
.svaliq-today-disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.svaliq-today-disclaimer-overlay.active {
  display: flex;
  opacity: 1;
}

.svaliq-today-disclaimer-popup {
  background-color: #5c2200;
  color: #f7cb67;
  max-width: 450px;
  width: 90%;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  text-align: center;
  font-family: 'Rubik', system-ui, sans-serif;
  animation: popupFade 0.5s ease;
}

.svaliq-today-disclaimer-popup .popup-title {
  color: #ff7828;
font-family: 'Chakra Petch', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.svaliq-today-disclaimer-popup .popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f7cb67;
}

.svaliq-today-disclaimer-popup .popup-actions button {
  min-width: 120px;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-svaliq-outline {
  background-color: transparent;
  border: 2px solid #ff7828;
  color: #ff7828;
  transition: all 0.3s;
}

.btn-svaliq-outline:hover {
  background-color: #ff7828;
  color: #5c2200;
  transform: translateY(-2px);
}

/* Popup animation */
@keyframes popupFade {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================
   Legal Pages
========================= */
.svaliq-today-legal {
  background-color: #5c2200;
  color: #f7cb67;
font-family: 'Chakra Petch', sans-serif;
  padding: 80px 20px;
}

.svaliq-today-legal h1.section-title {
  color: #ff7828;
font-family: 'Chakra Petch', sans-serif;
  font-size: 2.2rem;
  text-align: center; /* Center heading */
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.svaliq-today-legal h2.sub-heading {
  color: #ff7828;
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 12px;
  text-align: center; /* Center sub-heading */
}

.svaliq-today-legal p.section-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #f7cb67;
  text-align: center; 
}

@media (max-width: 768px) {
  .svaliq-today-legal {
    padding: 50px 15px;
  }

  .svaliq-today-legal h1.section-title {
    font-size: 1.8rem;
  }

  .svaliq-today-legal h2.sub-heading {
    font-size: 1.15rem;
  }
}
