/* ============ Velkro.live Base CSS ============ */

/* ===== Base Background ===== */
body {
  background-color: #a6d9ec;  /* Site background color */
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; /* unique system/web font */
  color: #912c01; /* default text color */
}


/* Headings */
.velkro-live h1,
.velkro-live h2,
.velkro-live h3,
.velkro-live h4,
.velkro-live h5,
.velkro-live h6 {
  color: #912c01;
  margin-top: 0;
}

/* Links */
.velkro-live a {
  color: #912c01;
  text-decoration: none;
}

.velkro-live a:hover,
.velkro-live a:focus {
  color: #ee9101;
  text-decoration: underline;
}

.velkro-live a:active {
  color: #912c01;
}

/* Buttons */
.velkro-live .btn {
  background-color: #912c01;
  color: #a6d9ec;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.velkro-live .btn:hover {
  background-color: #ee9101;
  color: #a6d9ec;
}

/* Accents (lines, highlights, borders) */
.velkro-live .accent {
  color: #912c01;
  border-color: #912c01;
}


/* ===== Navbar Styling ===== */
.velkro-live-navbar {
  background-color: #a6d9ec; /* matches site background */
  border-bottom: 2px solid #912c01;
}

.velkro-live-navbar .nav-link {
  color: #912c01;
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.velkro-live-navbar .nav-link:hover {
  color: #ee9101; /* hover color */
  border-bottom: 2px solid #ee9101;
}

/* ===== Active Link ===== */
.velkro-live-navbar .nav-link.active {
  color: #a6d9ec !important;
  background-color: #912c01;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
}



/* ===== Hero Section ===== */
.velkro-live-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #912c01;
  text-align: center;
  overflow: hidden;
}

.velkro-live-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/header-bg.jpg') no-repeat center center/cover !important;
  z-index: -1;
}


.velkro-live-hero-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #912c01;
}

.velkro-live-hero-text {
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
  color: #912c01;
}

.velkro-live-hero-btn {
  display: inline-block;
  background: #912c01;
  color: #a6d9ec;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.velkro-live-hero-btn:hover {
  background: #ee9101;
  color: #fff;
}



/* ===== Velkro.live Disclaimer Card Section ===== */
.velkro-live-disclaimer-card-section {
  background-color: #a6d9ec; /* Site background */
  padding: 4rem 0;
}

.velkro-live-disclaimer-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.velkro-live-disclaimer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.velkro-live-disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #912c01; /* Heading color */
}

.velkro-live-disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #912c01; /* Brand text color */
}

.velkro-live-btn {
  display: inline-block;
  background-color: #912c01;
  color: #a6d9ec;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.velkro-live-btn:hover {
  background-color: #ee9101;
  transform: translateY(-2px);
  color: #fff;
}


.velkro-live-game-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.velkro-live-game-card:hover {
  transform: translateY(-4px);
}

.velkro-live-game-card iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.velkro-live-section-title {
  font-size: 2.5rem;       /* Bigger heading */
  font-weight: 700;
  color: #912c01;        /* Heading color */
  margin-bottom: 1.5rem;
}

.velkro-live-section-subtext {
  font-size: 1.1rem;     /* Slightly larger subtext */
  color: #912c01;        /* Text color */
  line-height: 1.8;
}



.velkro-live-features-section {
  background-color: #a6d9ec; /* site background */
  padding: 5rem 0;
}

.velkro-live-feature-card {
  background: #fff;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.velkro-live-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(145, 44, 1, 0.25);
}

.velkro-live-feature-icon i {
  color: #912c01; /* icon color */
}

.velkro-live-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #912c01; /* heading color */
}

.velkro-live-feature-text {
  font-size: 1rem;
  color: #912c01; /* text color */
  line-height: 1.6;
}

.velkro-live-section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #912c01;
}

.velkro-live-feature-subtext {
  font-size: 1.2rem;
  color: #912c01;
  line-height: 1.8;
}


.velkro-live-about-section {
  background-color: #a6d9ec; /* Site background */
  padding: 5rem 0;
}

.velkro-live-about-img {
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(145, 44, 1, 0.25);
}

.velkro-live-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #912c01; /* Heading color */
}

.velkro-live-about-text {
  font-size: 1.1rem;
  color: #912c01; /* Text color */
  line-height: 1.7;
  margin-bottom: 1rem;
}



.velkro-live-reviews-section {
  background-color: #a6d9ec; /* Site background */
  padding: 5rem 0;
}

.velkro-live-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #912c01; /* Headings color */
}

.velkro-live-reviews-intro {
  font-size: 1.2rem;
  color: #912c01; /* Text color */
  margin-top: 0.5rem;
}

.velkro-live-review-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(145, 44, 1, 0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.velkro-live-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(145, 44, 1, 0.3);
}

.velkro-live-author-icon {
  color: #912c01;
  margin-bottom: 1rem;
}

.velkro-live-review-card p {
  font-size: 1rem;
  color: #912c01;
  margin-bottom: 0.5rem;
}

.velkro-live-review-card h5 {
  font-weight: 600;
  color: #912c01;
  margin-bottom: 0.25rem;
}

.velkro-live-review-card small {
  color: #912c01;
}


.velkro-live-footer {
  background-color: #a6d9ec; /* Site background */
  padding: 4rem 0;
  color: #912c01;
  font-family: 'Verdana', sans-serif;
}

.velkro-live-footer-logo {
  max-height: 100px;
}

.velkro-live-footer-links {
  padding-bottom: 14px;
  margin: 0;
  list-style: none;
  
}

.velkro-live-footer-link {
  color: #912c01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.velkro-live-footer-link:hover {
  color: #ee9101; /* Button hover / accent */
}

.velkro-live-footer-heading {
  font-size: 1.25rem;
  color: #912c01;
  font-weight: 700;
}

.velkro-live-footer-text {
  color: #912c01;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 13px;
}




.velkro-live-age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(145, 44, 1, 0.9); /* overlay dark */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.velkro-live-age-popup-box {
  background-color: #a6d9ec;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.velkro-live-age-popup-title {
  font-size: 1.75rem;
  color: #912c01;
  font-weight: 700;
  margin-bottom: 1rem;
}

.velkro-live-age-popup-text {
  font-size: 1rem;
  color: #912c01;
  line-height: 1.6;
}

.velkro-live-btn {
  background-color: #912c01;
  color: #a6d9ec;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.velkro-live-btn:hover {
  background-color: #ee9101;
  color: #a6d9ec;
}

.velkro-live-btn-ghost {
  background: transparent;
  border: 2px solid #912c01;
  color: #912c01;
}

.velkro-live-btn-ghost:hover {
  background-color: #912c01;
  color: #a6d9ec;
}

/* Scroll to Top Button */
.velkro-live-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #912c01;
  color: #a6d9ec;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
}

.velkro-live-scroll-top:hover {
  background-color: #ee9101;
  color: #a6d9ec;
}




.velkro-live-contact-section {
  background-color: #a6d9ec;
  color: #912c01;
  font-family: 'Verdana', sans-serif; /* or any unique system font you prefer */
}

.velkro-live-contact-form .form-label {
  color: #912c01;
  font-weight: 600;
}

.velkro-live-contact-form .form-control {
  border: 2px solid #912c01;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #fff2eb;
  color: #912c01;
}

.velkro-live-contact-form .form-control:focus {
  outline: none;
  border-color: #ee9101;
  box-shadow: 0 0 10px rgba(238,145,1,0.5);
}

.velkro-live-btn {
  background-color: #912c01;
  color: #a6d9ec;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s;
}

.velkro-live-btn:hover {
  background-color: #ee9101;
  color: #a6d9ec;
}



.velkro-live-disclaimer-section {
  background-color: #a6d9ec;
  color: #912c01;
  font-family: 'Verdana', sans-serif; /* unique system font */
}

.velkro-live-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #912c01;
}

.velkro-live-disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #912c01;
  margin-bottom: 1.25rem;
}


.velkro-live-privacy-section,
.velkro-live-terms-section,
.velkro-live-disclaimer-section {
  background-color: #a6d9ec;
  color: #912c01;
  font-family: 'Verdana', sans-serif; /* system or web-safe font */
}

.velkro-live-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #912c01;
  text-align: center;
}

.velkro-live-disclaimer-text,
.velkro-live-privacy-text,
.velkro-live-terms-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #912c01;
  margin-bottom: 1.25rem;
}
