/* ------------------------- */
/* Root Variables & Fonts */
/* ------------------------- */
:root {
  --heading-color: #2a6f00;
  --text-color: #984f24;
  --accent-color: #2a6f00;
  --btn-bg: #2a6f00;
  --btn-text: #ffecd3;
  --btn-hover: #984f24;
  --bg-color: #ffecd3;
  --font-family: 'Rubik', sans-serif;
}

/* ------------------------- */
/* Global Styles */
/* ------------------------- */
body.venturenorth-today-body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: 0.3s;
}

a:hover {
  color: var(--btn-hover);
}

/* ------------------------- */
/* Navbar Improved */
/* ------------------------- */
.venturenorth-today-nav {
  background-color: var(--bg-color);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: flex;
  top: 0;
  z-index: 999;
}

.venturenorth-today-nav .nav-link {
  color: var(--text-color);
  font-weight: 600;
  margin: 0 0.75rem;
  font-size: 1.05rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  transition: 0.3s;
}

.venturenorth-today-nav .nav-link:hover {
  color: #ffffff;
  background-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.venturenorth-today-nav .nav-link.active {
  color: #ffffff;
  background-color: var(--accent-color);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.venturenorth-today-logo {
  max-height: 76px;
}

.venturenorth-today-toggler i {
  color: var(--text-color);
  font-size: 1.5rem;
}

/* ------------------------- */
/* Hero Section */
/* ------------------------- */
.venturenorth-today-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(255,236,211,0.2), rgba(255,236,211,0.2)), url('../images/hero.jpg') center/cover no-repeat;
  padding: 4rem 1rem;
}

.venturenorth-today-hero-title {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.venturenorth-today-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.venturenorth-today-btn {
  display: inline-block;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 0.75rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: 0.3s;
}

.venturenorth-today-btn:hover {
  background-color: var(--btn-hover);
  color: var(--btn-text);
}

/* ------------------------- */
/* Disclaimer Section */
/* ------------------------- */
.venturenorth-today-disclaimer {
  background: rgba(42,111,0,0.07);
  padding: 3rem 1rem;
  border-radius: 0.6rem;
  margin: 2rem 0;
}

.venturenorth-today-disclaimer-title {
  font-size: 1.8rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.venturenorth-today-disclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

.venturenorth-today-small-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 500;
  transition: 0.3s;
}

.venturenorth-today-small-btn:hover {
  background-color: var(--btn-hover);
}

/* ------------------------- */
/* Play Section (Game) */
/* ------------------------- */
.venturenorth-today-play {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.venturenorth-today-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.venturenorth-today-game-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.venturenorth-today-video-ratio iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* ------------------------- */
/* Features Section */
/* ------------------------- */
.venturenorth-today-features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.venturenorth-today-feature {
  flex: 1 1 220px;
  max-width: 250px;
  background: rgba(42,111,0,0.08);
  padding: 1.5rem;
  border-radius: 0.6rem;
  text-align: center;
  transition: 0.3s;
}

.venturenorth-today-feature:hover {
  background: rgba(42,111,0,0.15);
}

.venturenorth-today-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.venturenorth-today-feature-title {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.venturenorth-today-feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ------------------------- */
/* About Section */
/* ------------------------- */
.venturenorth-today-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.venturenorth-today-about-text {
  flex: 1 1 400px;
  color: var(--text-color);
}

.venturenorth-today-about-text p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.venturenorth-today-about-image img {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ------------------------- */
/* Contact Section */
/* ------------------------- */
.venturenorth-today-contact {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.venturenorth-today-contact-wrapper {
  gap: 2rem;
}

.venturenorth-today-contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.venturenorth-today-contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.venturenorth-today-contact-info a:hover {
  color: #984f24; /* button hover color */
  text-decoration: underline;
}

.venturenorth-today-contact-form input,
.venturenorth-today-contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
}

.venturenorth-today-contact-form input:focus,
.venturenorth-today-contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(42,111,0,0.25);
}

.venturenorth-today-contact-form button {
  width: 100%;
  max-width: 250px;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 6px;
  background-color: var(--accent-color);
  color: #ffecd3;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.venturenorth-today-contact-form button:hover {
  background-color: #984f24;
}

/* ------------------------- */
/* Reviews Section */
/* ------------------------- */
.venturenorth-today-reviews {
  background-color: var(--bg-color);
  padding: 4rem 0;
}

.venturenorth-today-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.venturenorth-today-review-card {
  background: #ffffffcc;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 300px;
  flex: 1 1 45%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venturenorth-today-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.venturenorth-today-quote {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: 20px;
}

.venturenorth-today-review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
}

.venturenorth-today-reviewer {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.95rem;
  text-align: right;
}

/* Responsive: 1 column on small screens */
@media (max-width: 768px) {
  .venturenorth-today-review-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ------------------------- */
/* Footer */
/* ------------------------- */
.venturenorth-today-footer {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Rubik', sans-serif;
}

.venturenorth-today-footer-logo {
  max-height: 80px;
}

.venturenorth-today-footer-nav a {
  color: var(--text-color);
  margin: 0 0.35rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.venturenorth-today-footer-nav a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.venturenorth-today-footer-disclaimer {
  background-color: rgba(42, 111, 0, 0.08);
  border-left: 4px solid var(--accent-color);
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  max-width: 800px;
  margin: 1.5rem auto;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

.venturenorth-today-footer-disclaimer h4 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.venturenorth-today-footer-disclaimer a {
  color: var(--accent-color);
  text-decoration: underline;
}

.venturenorth-today-footer-copy {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  color: var(--text-color);
}

.venturenorth-today-footer-copy a {
  color: var(--accent-color);
  text-decoration: none;
}

.venturenorth-today-footer-copy a:hover {
  text-decoration: underline;
}

/* ------------------------- */
/* Responsive Styles */
/* ------------------------- */
@media (max-width: 992px) {
  .venturenorth-today-about {
    flex-direction: column;
    text-align: center;
  }
  .venturenorth-today-about-image {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .venturenorth-today-features-row {
    flex-direction: column;
    align-items: center;
  }

  .venturenorth-today-hero-title {
    font-size: 2.2rem;
  }

  .venturenorth-today-hero-sub {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .venturenorth-today-btn {
    padding: 0.6rem 1.2rem;
  }
}


/* ------------------------- */
/* Scroll to Top Button */
/* ------------------------- */
.venturenorth-today-scroll {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-color);
  color: #ffecd3;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease;
}

.venturenorth-today-scroll:hover {
  background: var(--text-color);
  color: #ffecd3;
  transform: translateY(-2px) scale(1.1);
}

/* ------------------------- */
/* Disclaimer Popup */
/* ------------------------- */
.venturenorth-today-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.venturenorth-today-popup.visible {
  visibility: visible;
  opacity: 1;
}

.venturenorth-today-popup-inner {
  background: var(--bg-color);
  color: var(--text-color);
  max-width: 520px;
  width: 90%;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.venturenorth-today-popup.visible .venturenorth-today-popup-inner {
  transform: translateY(0);
}

.venturenorth-today-popup-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venturenorth-today-popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: var(--text-color);
}

.venturenorth-today-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.venturenorth-today-popup-actions .venturenorth-today-btn {
  padding: 0.65rem 1.3rem;
  min-width: 130px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.venturenorth-today-popup-actions .venturenorth-today-btn.primary {
  background: var(--accent-color);
  color: var(--button-text-color);
}

.venturenorth-today-popup-actions .venturenorth-today-btn.primary:hover {
  background: var(--text-color);
  color: var(--accent-color);
  transform: translateY(-2px) scale(1.05);
}

.venturenorth-today-popup-actions .venturenorth-today-btn.ghost {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.venturenorth-today-popup-actions .venturenorth-today-btn.ghost:hover {
  background: var(--accent-color);
  color: var(--button-text-color);
  transform: translateY(-2px) scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .venturenorth-today-popup-inner {
    padding: 2rem 1.5rem;
  }

  .venturenorth-today-popup-title {
    font-size: 1.4rem;
  }

  .venturenorth-today-popup-text {
    font-size: 0.95rem;
  }
}


/* ------------------------- */
/* Legal Pages Styles */
/* ------------------------- */
.venturenorth-today-legal {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Rubik', sans-serif;
  padding: 4rem 0;
  line-height: 1.7;
}

.venturenorth-today-legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.venturenorth-today-legal-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.venturenorth-today-legal-text {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.venturenorth-today-legal a {
  color: var(--accent-color);
  text-decoration: underline;
}

.venturenorth-today-legal a:hover {
  color: var(--text-color);
}
