/* ========================================
   RESET & BASE
======================================== */
body.arvika-today-body {
  margin: 0;
  font-family: 'Rubik', system-ui, sans-serif;
  background-color: #2e1100;
  color: #ffac88;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ========================================
   HEADINGS
======================================== */
h1, h2, h3, h4, h5, h6 {
  color: #ffb430;
  text-shadow: 1px 1px 2px #2e1100;
  font-family: 'Rubik', system-ui, sans-serif;
  font-weight: 700;
}

/* ========================================
   BUTTONS
======================================== */
.btn-arvika {
  background-color: #ffb430;       /* button background */
  color: #2e1100;                  /* button text */
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-arvika:hover {
  background-color: #ffac88;       /* hover background */
  color: #2e1100;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-arvika:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-arvika:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 180, 48, 0.5);
}

/* ========================================
   NAVBAR
======================================== */
.arvika-today-navbar {
  background-color: #2e1100;
  border-bottom: 2px solid #ffb430;
  padding: 1rem 0;
}

.arvika-today-navbar .navbar-brand img {
  max-width: 160px;
  transition: 0.3s;
}

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

.arvika-today-navbar .nav-link {
  color: #ffac88;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: 0.3s;
}

.arvika-today-navbar .nav-link.active,
.arvika-today-navbar .nav-link:hover {
  color: #ffb430;
}

/* Navbar toggler */
.arvika-today-navbar .navbar-toggler {
  border: 1px solid #ffb430;
  color: #ffb430;
  font-size: 1.2rem;
  padding: 0.3rem 0.75rem;
  transition: 0.3s;
}

.arvika-today-navbar .navbar-toggler:hover {
  background-color: #ffb430;
  color: #2e1100;
}

/* Mobile dropdown menu spacing */
.arvika-today-navbar .navbar-collapse {
  text-align: center;
}

.arvika-today-navbar .navbar-nav {
  gap: 1rem;
}

@media (max-width: 767px) {
  .arvika-today-navbar .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .arvika-today-navbar .nav-link {
    padding: 0.5rem 0;
  }
}


/* ========================================
   HERO SECTION
======================================== */
.arvika-today-hero {
  position: relative;
  text-align: center;
  height: 80vh; /* full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: #2e1100 url('../images/hero.jpg') center/cover no-repeat;
}

.arvika-today-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 17, 0, 0.5); /* semi-transparent overlay */
  z-index: 1;
}

.arvika-today-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffac88;
}

.arvika-today-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffb430;
  text-shadow: 2px 2px 4px #2e1100;
  margin-bottom: 20px;
}

.arvika-today-hero .hero-sub {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.arvika-today-hero .hero-btn {
  background-color: #ffb430;
  color: #2e1100;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  transition: 0.3s;
}

.arvika-today-hero .hero-btn:hover {
  background-color: #ffac88;
  color: #2e1100;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .arvika-today-hero .hero-title {
    font-size: 2.2rem;
  }
  .arvika-today-hero .hero-sub {
    font-size: 1rem;
  }
}

/* ========================================
   DISCLAIMER CARD
======================================== */
.arvika-today-disclaimer-short .arvika-today-card {
  background-color: #2e1100;
  color: #ffac88;
  border: 1px solid #ffb430;
}

.arvika-today-disclaimer-short .btn {
  margin-top: 15px;
}

/* ========================================
   GAME SECTION
======================================== */
.arvika-today-game-frame iframe {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: none;
}

/* ========================================
   FEATURES
======================================== */
.arvika-today-features .feature-card {
  background-color: #2e1100;
  color: #ffac88;
  border: 1px solid #ffb430;
  transition: 0.3s;
}

.arvika-today-features .feature-card:hover {
  background-color: #ffb430;
  color: #2e1100;
}

.arvika-today-features .feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ========================================
   ABOUT
======================================== */
.arvika-today-about-img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 20px;
}
/* ========================================
   REVIEWS SECTION
======================================== */
.arvika-today-reviews {
  background-color: #2e1100;
  color: #ffac88;
  padding: 80px 20px;
}



.arvika-today-reviews .section-text {
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

.arvika-today-reviews .review-card {
  background-color: #3b1600;
  border: 2px solid #ffb430;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 30px;
}

.arvika-today-reviews .review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(255, 180, 48, 0.4);
  border-color: #ffac88;
}

.arvika-today-reviews .review-text {
  font-size: 1rem;
  color: #ffac88;
  margin-bottom: 15px;
}

.arvika-today-reviews .reviewer-name {
  font-weight: 600;
  color: #ffb430;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .arvika-today-reviews .review-card {
    margin-bottom: 20px;
  }
  .arvika-today-reviews .section-title {
    font-size: 2rem;
  }
  .arvika-today-reviews .section-text {
    font-size: 1rem;
  }
}

/* ========================================
   CONTACT SECTION
======================================== */
.arvika-today-contact {
  background-color: #3b1600;
  border: 2px solid #ffb430;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(255, 180, 48, 0.2);
}

.arvika-today-contact .arvika-today-input {
  background-color: #2e1100;
  color: #ffac88;
  border: 1px solid #ffb430;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.arvika-today-contact .arvika-today-input::placeholder {
  color: #ffac88aa;
}

.arvika-today-contact .arvika-today-input:focus {
  border-color: #ffac88;
  box-shadow: 0 0 10px rgba(255, 180, 48, 0.3);
  outline: none;
}

.arvika-today-contact .btn-arvika {
  background-color: #ffb430;
  color: #2e1100;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease;
}

.arvika-today-contact .btn-arvika:hover {
  background-color: #ffac88;
  color: #2e1100;
}

.arvika-today-contact .section-title {
  color: #ffb430;
  font-size: 2rem;
  text-shadow: 1px 1px 2px #2e1100;
  margin-bottom: 15px;
}

.arvika-today-contact .section-text {
  color: #ffac88;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .arvika-today-contact {
    padding: 30px 20px;
  }
  .arvika-today-contact .section-title {
    font-size: 1.7rem;
  }
  .arvika-today-contact .section-text {
    font-size: 1rem;
  }
}

/* ========================================
   BUTTONS
======================================== */

.btn-arvika-outline {
  background: transparent;
  color: #ffb430;
  border: 1px solid #ffb430;
}

.btn-arvika-outline:hover {
  background-color: #ffb430;
  color: #2e1100;
}

/* ========================================
   FOOTER
======================================== */
.arvika-today-footer {
  background-color: #2e1100;
  color: #ffac88;
}

.arvika-today-footer a {
  color: #ffb430;
  transition: 0.3s;
}

.arvika-today-footer a:hover {
  color: #ffac88;
}

.arvika-today-footer-logo {
  max-width: 150px;
}

.arvika-today-footer-disclaimer,
.arvika-today-footer-links {
  margin-bottom: 15px;
}

.arvika-today-footer-divider {
  border-color: #ffb430;
}

/* ========================================
   DISCLAIMER POPUP
======================================== */
.arvika-today-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.arvika-today-disclaimer-overlay.active {
  display: flex;
}

.arvika-today-disclaimer-popup {
  background-color: #2e1100;
  color: #ffac88;
  border: 1px solid #ffb430;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
}

.arvika-today-disclaimer-popup .popup-actions button {
  min-width: 100px;
}

/* ========================================
   SCROLL TO TOP
======================================== */
.arvika-today-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-color: #ffb430;
  color: #2e1100;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s;
}

.arvika-today-scroll-top:hover {
  background-color: #ffac88;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .arvika-today-navbar .navbar-nav {
    gap: 10px;
  }

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

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

  .arvika-today-features .feature-card {
    min-height: 250px;
  }

  .arvika-today-game-frame iframe {
    aspect-ratio: 16/9;
    height: auto;
  }
}



/* ========================================
   LEGAL PAGES - Disclaimer, Privacy, Terms
======================================== */
.arvika-today-legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffac88;
  background-color: #2e1100;
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.7;
}

/* Main Section Title */
.arvika-today-legal h2 {
  font-size: 2.8rem;
  color: #ffb430;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px #2e1100;
}

/* Subheadings */
.arvika-today-legal h3 {
  font-size: 1.8rem;
  color: #ffb430;
  margin-top: 30px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #2e1100;
}

/* Paragraph Text */
.arvika-today-legal p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #ffac88;
}

/* Links within Legal Text */
.arvika-today-legal a {
  color: #ffb430;
  text-decoration: underline;
  transition: 0.3s;
}

.arvika-today-legal a:hover {
  color: #ffac88;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .arvika-today-legal h2 {
    font-size: 2.2rem;
  }
  .arvika-today-legal h3 {
    font-size: 1.5rem;
  }
  .arvika-today-legal p {
    font-size: 1rem;
  }
}
