/* ===============================
   Velkro.top Theme Styles
   =============================== */

body.velkro-top {
  background-color: #3a3030;
  color: #ffe1d7;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Navbar */
.velkro-navbar {
  background-color: #3a3030;
}
.velkro-navbar .nav-link {
  color: #ffe1d7;
  transition: color 0.3s;
}
.velkro-navbar .nav-link:hover,
.velkro-navbar .nav-link.active {
  color: #ffaa8e;
}
.velkro-logo {
  max-height: 80px;
}

/* Hero */
.velkro-hero {
  background: url("../images/header-bg.jpg") center center/cover no-repeat;
  min-height: 80vh;
  color: #ffe1d7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.velkro-hero-heading {
  font-size: 3.6rem;       /* bigger heading */
  color: #ffaa8e;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  letter-spacing: 1px;
}

.velkro-hero-text {
  font-size: 1.4rem;       /* slightly larger text */
  color: #ffe1d7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.velkro-hero-btn {
  background: #ffaa8e;
  color: #3a3030;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: 0.3s;
}
.velkro-hero-btn:hover {
  background: #ffe1d7;
  color: #3a3030;
}

/* Section Titles */
.velkro-section-title {
  font-size: 2.6rem;               /* larger size */
  color: #ffaa8e;
  font-weight: 700;                /* bold */
  letter-spacing: 1px;             /* spaced out */
  margin-bottom: 1.5rem;           /* breathing room */
  text-align: center;              /* centered by default */
  text-transform: uppercase;       /* makes it stronger */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* more visible */
}

.velkro-section-text {
  color: #ffe1d7;
}

/* Buttons */
.velkro-btn {
  background: #ffaa8e;
  color: #3a3030;
  padding: 0.6rem 1.5rem;
  border-radius: 1.5rem;
  border: none;
  transition: 0.3s;
}
.velkro-btn:hover {
  background: #ffe1d7;
  color: #3a3030;
}
.velkro-btn-ghost {
  background: transparent;
  border: 2px solid #ffaa8e;
  color: #ffaa8e;
}
.velkro-btn-ghost:hover {
  background: #ffaa8e;
  color: #3a3030;
}

/* Game Cards */
.velkro-game-card {
  max-width: 900px;
}
.velkro-game-card iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: none;
}

/* Features */
.velkro-feature-card {
  background: #2a2424;
  color: #ffe1d7;
}
.velkro-feature-title {
  color: #ffaa8e;
}

/* About */
.velkro-about-text {
  margin-bottom: 1rem;
}

.velkro-review-card {
  background: #2a2424;
  color: #ffe1d7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.velkro-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.velkro-review-icon i {
  color: #ffaa8e;
  background: #3a3030;
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Footer */
.velkro-footer {
  background: #2a2424;
  color: #ffe1d7;
}
.velkro-footer-logo {
  max-height: 70px;
}
.velkro-footer-link {
  color: #ffe1d7;
  text-decoration: none;
  transition: color 0.3s;
}
.velkro-footer-link:hover {
  color: #ffaa8e;
}
.velkro-footer-heading {
  color: #ffaa8e;
}

/* Age Popup */
.velkro-age-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.velkro-age-popup-overlay.active {
  display: flex;
}
.velkro-age-popup-box {
  background: #2a2424;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  color: #ffe1d7;
}
.velkro-age-popup-title {
  color: #ffaa8e;
}

/* Scroll to Top */
.velkro-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ffaa8e;
  color: #3a3030;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 999;
}
.velkro-scroll-top:hover {
  background: #ffe1d7;
  color: #3a3030;
}




.velkro-contact-section {
  background: #1e1a1a;
  color: #ffe1d7;
}

.velkro-contact-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #e2c5bc;
}

.velkro-contact-form {
  background: #2a2424;
  color: #ffe1d7;
}

.velkro-contact-form .form-control {
  background: #3a3030;
  border: 1px solid #554b4b;
  color: #ffe1d7;
  padding: 0.75rem;
  border-radius: 10px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.velkro-contact-form .form-control:focus {
  border-color: #ffaa8e;
  box-shadow: 0 0 0 0.2rem rgba(255,170,142,0.3);
}

.velkro-contact-form label {
  font-weight: 600;
  color: #ffaa8e;
}

.velkro-contact-form button {
  margin-top: 1rem;
}


.velkro-legal-section {
  background: #2a2424;
  color: #ffe1d7;
  padding: 3rem 1rem;
}

.velkro-legal-section h2 {
  font-size: 2.6rem;
  color: #ffaa8e;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.velkro-legal-section h4 {
  font-size: 1.4rem;
  color: #ffaa8e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.velkro-legal-section p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
