/* ================= GLOBAL DARK THEME ================= */
body {
  font-family: 'Georgia', serif;
  background-color: #111;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  background-attachment: fixed;
  background-size: cover;
  color: #e0e0e0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #f5f5f5;
}

.teal { color: #008080; }

/* Global Teal Button */
.btn-teal {
  background-color: #008080;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,128,128,0.4);
  transition: all 0.3s ease;
}

.btn-teal:hover {
  background-color: #00a0a0;
  box-shadow: 0 6px 16px rgba(0,128,128,0.6);
  transform: translateY(-2px);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #e0e0e0;
}
a:hover { color: #008080; }

/* ================= NAVBAR ================= */
.navbar {
  background-color: #0d0d0d;
  box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.navbar-nav .nav-link {
  color: #ddd;
  font-weight: 500;
  margin-left: 15px;
}
.navbar-nav .nav-link:hover { color: #008080; 
}



/* ================= JUMBOTRON ================= */
.jumbotron {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), 
              url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 20px;
  color: #f0f0f0;
}
.jumbotron h1 { font-size: 3rem; color: #fff; }
.jumbotron p { font-size: 1.2rem; color: #ccc; }

/* ================= CARDS ================= */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, background 0.3s ease;
  background-color: #1f1f1f;
  color: #ddd;
}
.card:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
}
.card-title { color: #008080; }

/* ================= AUTHOR SECTION ================= */
.author-section {
  padding: 80px 20px;
  background: #181818;
}
.author-section img {
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}
.author-section h2 { color: #008080; }
.social-links a { margin-right: 15px; color: #008080; font-size: 1.2rem; }

/* ================= BOOK FEATURE ================= */
.book-feature { background: #141414; }
.book-feature h2 { color: #008080; }
.price { font-size: 2rem; font-weight: bold; margin: 15px 0; color: #f5f5f5; }

/* ================= TESTIMONIALS ================= */
.testimonial-section {
  background: #1a1a1a;
  padding: 100px 20px;
}
.testimonial-card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  color: #ccc;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* ================= NEWSLETTER ================= */
.newsletter {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}
.newsletter input {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #555;
}
.newsletter input::placeholder { color: #bbb; }

/* ================= PRICING ================= */
.pricing-section { background: #181818; }
.pricing-section .card { background-color: #1f1f1f; }
.pricing-section h3 { color: #f5f5f5; }
.price { color: #008080; }

/* ================= VIDEO ================= */
.video-section { background: #141414; }
.wide-video {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.7);
  cursor: pointer;
}
.wide-video img {
  width: 100%;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.3s ease;
}
.wide-video:hover img { transform: scale(1.03); }

/* ================= STATS ================= */
.stats-section {
  background: #1a1a1a;
  padding: 80px 20px;
}
.stat {
  font-size: 2.5rem;
  font-weight: bold;
  color: #008080;
}
.stat-label { margin-top: 10px; font-size: 1.1rem; color: #ddd; }

/* ================= FOOTER ================= */
footer {
  background: #0d0d0d;
  padding: 30px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* ================= RESPONSIVE FIXES ================= */
@media (max-width: 767px) {
  .jumbotron h1 {
    font-size: 2rem;
  }

  .jumbotron p {
    font-size: 1rem;
  }

  .jumbotron img {
    max-width: 80%;
  }

  .author-section img,
  .book-feature img {
    max-width: 70%;
    margin-bottom: 20px;
  }

  .pricing-card {
    text-align: center !important;
  }
}


