/* ===========================
   GENERAL
   =========================== */
body.drovik-click-body {
  margin: 0;
  padding: 0;
  font-family: 'Rubik', sans-serif;
  background-color: #050A0F;
  color: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #FFA94D;
  transition: color 0.3s;
}
a:hover { color: #FF6F00; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Pirata One', cursive;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

/* ===========================
   NAVBAR
   =========================== */
.drovik-click-navbar {
  background-color: #0A1B2A;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.drovik-click-navbar .navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.drovik-click-navbar .navbar-nav .nav-link:hover,
.drovik-click-navbar .navbar-nav .nav-link.active { color: #FFA94D; }
.drovik-click-logo { max-height: 80px; }
.navbar-toggler { border: none; font-size: 1.2rem; color: #fff; }
.navbar-toggler:focus { outline: none; }

/* ===========================
   HERO SECTION
   =========================== */
.drovik-click-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.drovik-click-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 33, 5, 0.3); /* dark green overlay for contrast */
  z-index: 1;
}

.drovik-click-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 0 15px;
}

.drovik-click-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px #ffac1a;
}

.drovik-click-hero .hero-sub {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.drovik-click-hero .hero-btn {
  background: #ffcfa7;
  color: #052105;
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
}

.drovik-click-hero .hero-btn:hover {
  background: #ffffff;
  color: #052105;
}

@media (max-width: 768px) {
  .drovik-click-hero .hero-title {
    font-size: 2.2rem;
  }

  .drovik-click-hero .hero-sub {
    font-size: 1rem;
  }

  .drovik-click-hero .hero-btn {
    font-size: 1rem;
    padding: 0.65rem 1.5rem;
  }
}

/* ===========================
   DISCLAIMER CARD
   =========================== */
.drovik-click-disclaimer-short {
  background-color: #050A0F; /* dark site background */
}

.drovik-click-card {
  background-color: #052105; /* match site background */
  border: 1px solid rgba(255, 172, 26, 0.2); /* subtle accent */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  max-width: 650px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.drovik-click-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.drovik-click-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px #ffac1a; /* subtle golden text border */
}

.drovik-click-card-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.7;
}

.drovik-click-card .btn-drovik {
  background: #ffcfa7;
  color: #052105;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.drovik-click-card .btn-drovik:hover {
  background: #ffffff;
  color: #052105;
}

/* ===========================
   GAME - Responsive 16:9
   =========================== */
.drovik-click-game {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.drovik-click-game-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
}

.drovik-click-game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}

/* ===========================
   FEATURES
   =========================== */
.feature-card {
  background: #0A1B2A;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; color: #FFA94D; margin-bottom: 1rem; }

/* ===========================
   ABOUT
   =========================== */
.drovik-click-about-img { border-radius: 15px; }

/* ===========================
   REVIEWS / CARDS
   =========================== */
.review-card,
.drovik-click-card,
.feature-card {
  background-color: #0A1B2A; /* Slightly lighter than site bg */
  color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.review-card h6,
.feature-card h5,
.drovik-click-card-title {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Hover effect */
.review-card:hover,
.drovik-click-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  background-color: #111f33; /* Slightly brighter on hover */
}

/* Review text */
.review-text,
.feature-card p,
.drovik-click-card p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Reviewer meta */
.reviewer-meta h6,
.reviewer-meta small {
  color: #ffcfa7; /* Accent color */
}

/* ===========================
   CONTACT FORM
   =========================== */
.drovik-contact {
  max-width: 700px;   /* Contain width */
  margin: 0 auto;
}

.drovik-click-input {
  width: 100%;              /* Full width */
  background-color: #050A0F; /* Site background */
  color: #ffffff;           /* Text color */
  border: 1px solid #FFA94D; /* Accent border */
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}

.drovik-click-input::placeholder {
  color: #ffcfa7;  /* Accent color for placeholder */
  opacity: 1;      /* Make visible on dark bg */
}

.drovik-click-input:focus {
  outline: none;
  border-color: #FF6F00; /* Highlight on focus */
  background-color: #11131A; /* Slightly lighter on focus */
}

.drovik-click-contact button.btn-drovik {
  background-color: #ffcfa7; /* Light accent for visibility */
  color: #052105;            /* Dark text for contrast */
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.drovik-click-contact button.btn-drovik:hover {
  background-color: #ffffff; /* Hover to bright white */
  color: #052105;            /* Maintain readable text */
}

.drovik-click-contact button.btn-drovik:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 175, 26, 0.5); /* subtle focus ring */
}


/* ===========================
   FOOTER
   =========================== */
.drovik-click-footer {
  background: #050A0F;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  padding-top: 60px;
  padding-bottom: 60px;
}

.drovik-click-footer-logo {
  max-width: 180px;
  display: inline-block;
  margin-bottom: 30px;
}

.footer-heading {
  color: #FFA94D;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.drovik-click-footer-disclaimer {
  max-width: 650px; /* contained width */
}

.footer-disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #eee;
}

.drovik-click-footer-links li {
  margin-bottom: 10px;
}

.drovik-click-footer-links a {
  color: #ccc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.drovik-click-footer-links a:hover {
  color: #FFA94D;
}

.drovik-click-footer-divider {
  border-color: rgba(255, 169, 77, 0.3);
}

.drovik-click-footer-bottom {
  color: #888;
  font-size: 0.85rem;
  margin-top: 10px;
}

.drovik-click-footer-bottom a {
  color: #FFA94D;
  text-decoration: none;
  transition: color 0.3s;
}

.drovik-click-footer-bottom a:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-heading {
    text-align: left;
  }
  .drovik-click-footer-disclaimer {
    max-width: 100%;
  }
  .col-lg-7, .col-lg-4 {
    margin-bottom: 30px;
  }
}

.drovik-click-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 15, 0.95);
  display: none; /* hide by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow-y: auto;
}

.drovik-click-disclaimer-overlay.active {
  display: flex; /* show when active */
}

.drovik-click-disclaimer-popup {
  background: #0A1B2A;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: #fff;
}

/* Popup buttons */
.drovik-click-disclaimer-popup .btn {
  background-color: #FFA94D; /* bright orange button */
  color: #050A0F;            /* dark text for contrast */
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.drovik-click-disclaimer-popup .btn:hover {
  background-color: #FF6F00; /* hover effect */
  color: #fff;
}

.drovik-click-disclaimer-popup .btn.btn-drovik-outline {
  background-color: transparent;
  color: #FFA94D;
  border: 2px solid #FFA94D;
}

.drovik-click-disclaimer-popup .btn.btn-drovik-outline:hover {
  background-color: #FFA94D;
  color: #050A0F;
}


/* ===========================
   SCROLL TO TOP
   =========================== */
.drovik-click-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #ffcfa7;
  color: #052105;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background-color 0.3s, color 0.3s;
}

.drovik-click-scroll-top:hover {
  background-color: #ffffff;
  color: #052105;
}



.legal-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFA94D;
  text-align: center;
  margin-bottom: 40px;
}

.legal-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFB347;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #E0E0E0;
  margin-bottom: 15px;
}

.btn-legal {
  background-color: #FFA94D;
  color: #050A0F;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-legal:hover {
  background-color: #FF6F00;
  color: #fff;
}

@media (max-width: 576px) {
  .legal-title {
    font-size: 1.9rem;
  }
  .legal-subtitle {
    font-size: 1.3rem;
  }
  .legal-text {
    font-size: 1rem;
  }
}
