/* ================================
   GLOBAL STYLES
   ================================ */
body.tundro-rest-body {
  margin: 0;
  padding: 0;
  background-color: #2b0d00;
  font-family: 'Orbitron', sans-serif;
  color: #fae7e7;
}

a { color: #ff9e9e; text-decoration: none; }
a:hover, a:focus { color: #fae7e7; text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  color: #ff9e9e;
  text-shadow: 1px 1px 0 #2b0d00, -1px -1px 0 #2b0d00;
  font-weight: 700;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ==============================
   GLOBAL & BODY
   ============================== */
body.tundro-rest-body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #2b0d00;
  color: #fae7e7;
}

/* LINKS */
a {
  color: #ff9e9e;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #fae7e7;
  text-decoration: none;
}

/* ==============================
   NAVBAR
   ============================== */
.tundro-rest-navbar {
  background-color: #2b0d00;
}

.tundro-rest-logo {
  max-height: 80px;
}

.tundro-rest-nav .nav-link {
  color: #fae7e7;
  font-weight: 600;
  position: relative;
}

.tundro-rest-nav .nav-link.active,
.tundro-rest-nav .nav-link:hover {
  color: #ff9e9e;
}

.tundro-rest-nav .nav-link.active::after,
.tundro-rest-nav .nav-link:hover::after {
  content: '';
  display: block;
  height: 2px;
  background: #ff9e9e;
  width: 100%;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}

/* TOGGLE BUTTON */
.navbar-toggler {
  border: 2px solid #ff9e9e;
  color: #ff9e9e;
  background: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background-color: #ff9e9e;
  color: #2b0d00;
}

.tundro-rest-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.tundro-rest-hero .hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cover the entire section */
  z-index: 0;
}

.tundro-rest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 13, 0, 0.2); /* dark overlay for readability */
  z-index: 1;
}

.tundro-rest-hero .hero-content {
  position: relative;
  z-index: 2; /* above overlay and image */
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}

.tundro-rest-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ff9e9e;
  text-shadow: 1px 1px 0 #2b0d00, -1px -1px 0 #2b0d00;
  margin-bottom: 20px;
}

.tundro-rest-hero .hero-sub {
  font-size: 1.2rem;
  color: #fae7e7;
  margin-bottom: 30px;
}

.tundro-rest-hero .hero-btn {
  background-color: #ff9e9e;
  color: #2b0d00;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.tundro-rest-hero .hero-btn:hover {
  background-color: #fae7e7;
  color: #2b0d00;
}

/* ==============================
   GAME SECTION
   ============================== */
.tundro-rest-play .section-title {
  font-size: 2.5rem;
  color: #ff9e9e;
  text-align: center;
  margin-bottom: 30px;
}

.tundro-rest-game-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;
}

.tundro-rest-game-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FEATURES SECTION */
.tundro-rest-features {
  background-color: #2b0d00;
  color: #fae7e7;
  position: relative;
  padding: 80px 15px;
}

.tundro-rest-features .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff9e9e;
  text-shadow: 1px 1px 0 #2b0d00, -1px -1px 0 #2b0d00;
  margin-bottom: 20px;
}

.tundro-rest-features .section-subtitle {
  font-size: 1.2rem;
  color: #fae7e7;
  margin-bottom: 40px;
}

.tundro-rest-features .feature-card {
  background-color: rgba(255, 158, 158, 0.05);
  border: 1px solid rgba(255, 158, 158, 0.3);
  transition: all 0.3s ease;
}

.tundro-rest-features .feature-card:hover {
  background-color: rgba(255, 158, 158, 0.15);
  transform: translateY(-5px);
}

.tundro-rest-features .feature-icon {
  font-size: 2.5rem;
  color: #ff9e9e;
}

.tundro-rest-features .feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff9e9e;
  margin-bottom: 10px;
}

.tundro-rest-features .feature-text {
  font-size: 1rem;
  color: #fae7e7;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tundro-rest-features .section-title {
    font-size: 2.2rem;
  }
  .tundro-rest-features .feature-title {
    font-size: 1.2rem;
  }
  .tundro-rest-features .feature-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tundro-rest-features .section-title {
    font-size: 1.8rem;
  }
  .tundro-rest-features .feature-card {
    padding: 20px;
  }
}

/* ==============================
   ABOUT SECTION
   ============================== */
.tundro-rest-about .section-title {
  font-size: 2.2rem;
  color: #ff9e9e;
  margin-bottom: 15px;
}

.tundro-rest-about .section-text {
  color: #fae7e7;
  line-height: 1.6;
}

/* REVIEWS SECTION */
.tundro-rest-reviews {
  background-color: #2b0d00;
  color: #fae7e7;
  padding: 80px 15px;
}

.tundro-rest-reviews .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9e9e;
  text-shadow: 1px 1px 0 #2b0d00, -1px -1px 0 #2b0d00;
}

.tundro-rest-reviews .section-subtitle {
  font-size: 1.1rem;
  color: #fae7e7;
  margin-bottom: 40px;
}

.tundro-rest-reviews .review-card {
  background-color: rgba(255, 158, 158, 0.05);
  border: 1px solid rgba(255, 158, 158, 0.3);
  transition: all 0.3s ease;
}

.tundro-rest-reviews .review-card:hover {
  background-color: rgba(255, 158, 158, 0.15);
  transform: translateY(-5px);
}

.tundro-rest-reviews .review-icon {
  font-size: 3rem;
  color: #ff9e9e;
  display: block;
}

.tundro-rest-reviews .review-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #fae7e7;
}

.tundro-rest-reviews .reviewer-name {
  font-weight: 700;
  color: #ff9e9e;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tundro-rest-reviews .section-title {
    font-size: 2.2rem;
  }
  .tundro-rest-reviews .review-text {
    font-size: 0.95rem;
  }
  .tundro-rest-reviews .review-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .tundro-rest-reviews .section-title {
    font-size: 1.8rem;
  }
  .tundro-rest-reviews .review-card {
    padding: 20px;
  }
  .tundro-rest-reviews .review-icon {
    font-size: 2rem;
  }
}

/* ==============================
   CONTACT FORM
   ============================== */
.tundro-rest-contact .tundro-rest-input {
  background: #3c150c;
  border: 2px solid #ff9e9e;
  border-radius: 8px;
  color: #fae7e7;
  padding: 10px 15px;
  font-size: 1rem;
}

.tundro-rest-contact .tundro-rest-input::placeholder {
  color: #fae7e7;
}

.tundro-rest-contact .btn {
  margin-top: 10px;
}

/* ==============================
   FOOTER
   ============================== */
.tundro-rest-footer {
  background-color: #2b0d00;
  color: #fae7e7;
  text-align: center;
  padding: 50px 20px;
}

.tundro-rest-footer-links a {
  color: #ff9e9e;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tundro-rest-footer-links a:hover {
  color: #fae7e7;
}

/* ==============================
   DISCLAIMER POPUP
   ============================== */
.tundro-rest-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

.tundro-rest-disclaimer-overlay.active {
  display: flex;
}

.tundro-rest-disclaimer-popup {
  background: #3c150c;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: #fae7e7;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.tundro-rest-disclaimer-popup .popup-title {
  font-size: 1.8rem;
  color: #ff9e9e;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #2b0d00;
}

.tundro-rest-disclaimer-popup .popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fae7e7;
}

.tundro-rest-disclaimer-popup .popup-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* ================================
   HERO
   ================================ */
.tundro-rest-hero {
  padding: 100px 20px 80px;
  text-align: center;
  background: #2b0d00;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tundro-rest-hero .hero-content { max-width: 850px; margin: 0 auto; }
.tundro-rest-hero .hero-title { font-size: 3rem; margin-bottom: 20px; }
.tundro-rest-hero .hero-sub { font-size: 1.2rem; margin-bottom: 30px; }
.btn.btn-tundro {
  background-color: #ff9e9e;
  color: #2b0d00;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}
.btn.btn-tundro:hover { background-color: #fae7e7; color: #2b0d00; }

/* ================================
   GAME SECTION
   ================================ */
.tundro-rest-play .section-title { font-size: 2.5rem; margin-bottom: 30px; text-align: center; }
.tundro-rest-game-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;
  position: relative;
}
.tundro-rest-game-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* ================================
   FEATURES
   ================================ */
.tundro-rest-features .section-title { font-size: 2.5rem; margin-bottom: 20px; text-align: center; }
.tundro-rest-features .feature-card {
  background: #3c150c;
  border-radius: 20px;
  padding: 30px;
  color: #fae7e7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tundro-rest-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}
.tundro-rest-features .feature-icon { font-size: 2.5rem; color: #ff9e9e; }

/* ================================
   ABOUT
   ================================ */
.tundro-rest-about .section-title { font-size: 2.5rem; margin-bottom: 20px; }
.tundro-rest-about-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ================================
   REVIEWS
   ================================ */
.tundro-rest-reviews .review-card {
  background: #3c150c;
  border-radius: 16px;
  padding: 25px;
  color: #fae7e7;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.tundro-rest-reviews .review-text { font-size: 1rem; margin-bottom: 10px; }
.tundro-rest-reviews .reviewer-name { font-weight: 700; color: #ff9e9e; }

/* ================================
   CONTACT
   ================================ */
.tundro-rest-contact .tundro-rest-input {
  background: #3c150c;
  color: #fae7e7;
  border: 1px solid #ff9e9e;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}
.tundro-rest-contact .tundro-rest-input:focus {
  border-color: #fae7e7;
  outline: none;
}

/* ================================
   FOOTER
   ================================ */
.tundro-rest-footer { background: #2b0d00; color: #fae7e7; }
.tundro-rest-footer-links a { color: #fae7e7; transition: all 0.3s ease; }
.tundro-rest-footer-links a:hover { color: #ff9e9e; border-bottom: 2px solid #ff9e9e; }
.tundro-rest-footer-disclaimer { font-size: 0.9rem; text-align: center; }

/* DISCLAIMER POPUP OVERLAY */
.tundro-rest-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

.tundro-rest-disclaimer-overlay.active {
  display: flex;
}

/* DISCLAIMER POPUP CARD */
.tundro-rest-disclaimer-popup {
  background: #3c150c;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: #fae7e7;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

/* POPUP TITLE */
.tundro-rest-disclaimer-popup .popup-title {
  font-size: 1.8rem;
  color: #ff9e9e;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #2b0d00;
}

/* POPUP TEXT */
.tundro-rest-disclaimer-popup .popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fae7e7;
}

/* BUTTONS */
.tundro-rest-disclaimer-popup .btn {
  min-width: 130px;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* PRIMARY BUTTON */
.btn-tundro {
  background-color: #ff9e9e;
  color: #2b0d00;
  border: 2px solid #ff9e9e;
}

.btn-tundro:hover {
  background-color: #fae7e7;
  color: #2b0d00;
  border-color: #fae7e7;
}

/* OUTLINE BUTTON */
.btn-tundro-outline {
  background-color: transparent;
  color: #ff9e9e;
  border: 2px solid #ff9e9e;
}

.btn-tundro-outline:hover {
  background-color: #ff9e9e;
  color: #2b0d00;
  border-color: #ff9e9e;
}

/* POPUP BUTTON CONTAINER */
.tundro-rest-disclaimer-popup .popup-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* ================================
   SCROLL TO TOP
   ================================ */
.tundro-rest-scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  background: #ff9e9e; color: #2b0d00;
  border: none; border-radius: 50%;
  width: 45px; height: 45px;
  display: none; justify-content: center; align-items: center;
  font-size: 1.5rem; cursor: pointer; z-index: 999;
  transition: all 0.3s ease;
}
.tundro-rest-scroll-top:hover { background: #fae7e7; }



/* LEGAL PAGES */
.tundro-rest-legal {
  background-color: #2b0d00;
  color: #fae7e7;
  padding: 80px 15px;
  font-family: 'Orbitron', sans-serif;
}

.tundro-rest-legal .legal-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff9e9e;
  text-align: center;
  text-shadow: 1px 1px 0 #2b0d00, -1px -1px 0 #2b0d00;
  margin-bottom: 30px;
}

.tundro-rest-legal .legal-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff9e9e;
  margin-top: 40px;
  margin-bottom: 15px;
}

.tundro-rest-legal .legal-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #fae7e7;
  margin-bottom: 15px;
}

.tundro-rest-legal a {
  color: #ff9e9e;
  text-decoration: underline;
}

.tundro-rest-legal a:hover {
  color: #fae7e7;
}

@media (max-width: 768px) {
  .tundro-rest-legal .legal-title {
    font-size: 2.2rem;
  }
  .tundro-rest-legal .legal-subtitle {
    font-size: 1.5rem;
  }
  .tundro-rest-legal .legal-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tundro-rest-legal .legal-title {
    font-size: 1.8rem;
  }
  .tundro-rest-legal .legal-subtitle {
    font-size: 1.3rem;
  }
  .tundro-rest-legal .legal-text {
    font-size: 0.9rem;
  }
}
