:root {
  --primary-color: #8b6f47;
  --primary-dark: #6b5437;
  --secondary-color: #a67c52;
  --accent-color: #c19a6b;
  --text-dark: #2c2416;
  --text-medium: #5a4a3a;
  --text-light: #8b7a6a;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1eb;
  --bg-white: #ffffff;
  --border-color: #e5ddd5;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Lato", sans-serif;

  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #351d5c, #2E1A47);
  line-height: 1.7;
  font-size: 16px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 15, 46, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #1B0F2E;
  color: #F4F1EA;
  padding: 40px;
  text-align: center;
  border: 2px solid #D4AF37;
  border-radius: 8px;
}

.popup-content button {
  background: #D4AF37;
  color: #1B0F2E;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}


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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}
h4 a {
  text-decoration: none;
  color: #1e1d1d;
} 
p a {
  text-decoration: none;
  color: #1e1d1d;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
.dropdown-1 {
  position: relative;
  display: inline-block; /* Allows the button to sit inline */ 
  width: 100%;
  /* margin-bottom: 5vh; */

}

/* Dropdown Button Styling */
.dropbtn-1 {
    background: #D4AF37;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    color: #0b1527;
    width: 30vh;
    padding: 15px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2vh;
    
}

.dropbtn-1:hover {
    background-color: #F5D98E;
}

/* Dropdown Content (Hidden by default, positioned absolutely) */
.dropdown-content-1 {
    display: none; /* Hide by default */
    position: absolute; /* Overlays other content */
    background-color: #D4AF37;
    width: 100%;
    color: #0b1527;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}

/* Links inside the dropdown */
.dropdown-content-1 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content-1 a:hover {
  background: #F5D98E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Class added by JavaScript to show the menu */
.dropdown-content-1.show {
    display: block;
}

.hero {
  background:linear-gradient(#120821, #12082185), url("img/heroo.jpeg");
  margin-top: 6px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--bg-white);
  padding: 100px 20px 60px;
}

.hero-title {
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--bg-white);
  margin: 2rem auto;
  opacity: 0.7;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.btn {
  display: inline-block;
  padding: 0.5rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.btn a {
  text-decoration: none;
  color: #fff;
}

.btn-primary {
  background: #D4AF37;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-cream);
}

.btn-secondary {
  background: var(--primary-color);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color:white;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: #0b1527;
  margin: 1.5rem auto;
}

.section-intro {
  font-size: 1.2rem;
  color: #fff;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

#about-carlyoung img {
  float: left;
  margin-right: 8px;
  width: 300px;
  border-radius: 8px;
  padding: 2vh;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text {
  max-width: 100%;
  margin: 0 auto;
  background-color:#1B0F2E ;
  padding: 5vh;
  border-radius: 15px;
}

.about-text ul {
  margin-left: 4%;
}

.about-text #read-carl {
  width: 100%;
  margin: 10vh 0 0 0;
}

.lead {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: white;
  font-weight: 200;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin:2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: #14233C;
  border-radius: 12px;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #fff;
}
.book-section {
  width: 95%;
  background-color: #1B0F2E;
  margin: 2rem;
  border-radius: 10px;
  color: white;
}
.book-section h2 {
  text-align: center;
}

.book-1 {
  width: 98%;
  margin: 2rem;
  display: flex;
  justify-content:space-around;
  align-items: center;
  gap: 2vh;
}

.book-1 .image-details {
  width: 65%;
}
.book-1 img {
  border: 1px solid white;
}

.image-details .button-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  margin: 40px 0 0 0 ;

}
.image-details .button-div .buy-now {
  width: 30%;
  padding: 10px;
  background-color: #D4AF37;
  color: #1B0F2E;
  border-radius: 4px;
  margin-bottom: 10px;
  text-align: center;
}
.image-details .button-div .buy-now:hover {
  background-color: #F5D98E;
}

.image-details .button-div .review-button {
  width: 100%;
  text-align: center;
}
.coming-books {
  width: 98%;
  background-color: #E4E7EB;
  margin: .5rem;
}
.coming-books h2 {
  text-align: center;
}
.coming-books .coming-book-contents {
  margin: 2rem 0 0 0 ;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.coming-book-card {
  border: 1px solid black;
  width: 49vh;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 13px;
}



.coming-book-card .card-details {
  margin: 2vh;
}
.card-details h4 {
  font-style:italic ;
  margin: 0 0 15px 0;
}
.card-details h5 {
  font-family: var(--font-heading);
}
/* Responsive layout for small devices */

.manifesto {
  background: #351d5c;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.manifesto-card {
  background: #14233C;
  padding: 2.5rem;
  border-radius: 16px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.manifesto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #14233C;
  transform: scaleX(0);
  transition: var(--transition);
}

.manifesto-card:hover::before {
  transform: scaleX(1);
}

.manifesto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: #9863ef;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: white;
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.manifesto-card h3 {
  color: white;
  margin-bottom: 1.5rem;
  min-height: 60px;
}
.card-content {
  width: 100%;
  height: auto;
}

.card-content p {
  color: white;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.manifesto-footer {
  text-align: center;
  margin-top: 3rem;
}

.manifesto-note {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
}

.resources {
  background: #14233C;
  width: 98%;
  margin: 1rem;
  border-radius: 15px;
}
.resources-banner {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.card {
  width: 33%;
  height: auto;
  background: #351d5c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card .img1 {
  height: 70vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(book/3.png);
}
.card .img2 {
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(book/2.png);
}
.card .img3 {
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(book/3.png);
}
.card .img4 {
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(book/4.png);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #333;
}

.cta {
  background-color: #1F2A38;
  color: var(--bg-white);
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.footer {
  background: #120821;
  color: #F4F1EA;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #F4F1EA;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #F4F1EA;
  opacity: 0.9;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links .links {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links #fb {
  background-image: url(icon/facebook.png);
  background-size: cover;
  background-position: center;
}
.social-links #tt {
  background-image: url(icon/tiktok.png);
  background-size: cover;
  background-position: center;
  background-color: #f5f1eb;
}
.social-links #ig {
  background-image: url(icon/insta.png);
  background-size: cover;
  background-position: center;
}
.social-links #ld {
  background-image: url(icon/linkedin.png);
  background-size: cover;
  background-position: center;
}
.social-links #bs {
  background-image: url(icon/bluesky.png);
  background-size: cover;
  background-position: center;
}

.social-links .links:hover {
  cursor: pointer;
  transform: translateY(-3px);
  /* background-color: #8B6F47; */
}

.footer-bottom {
  border-top: 1px solid rgba(56, 55, 55, 0.729);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #F4F1EA;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* video section*/

/* Base Styling */

/* Video Section Styling */
.video-section {
  background: var(--bg-white);
  padding: 80px 20px;
  margin: 60px auto;
  text-align: center;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Reset */

/* Banner Section */
.coming-banner {
  background-color: #120821;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem;
  color: black;
}
.coming-banner h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: #fff;
}
.coming-banner .coming-banner-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 30px;
}
 .coming-banner .coming-banner-contents a {
  width: 50%;
  text-align: center;
 }
.banner-content {
  flex: 1;
} 

.banner-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
} 

.banner-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}
.banner-image {
  width:40%;
  border: 1px solid white;
  border-radius: 10px;
}

.banner-image img {
  width: 100%;
  height: 100vh;
  border-radius: 10px;
}

    .banner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin: 1.5rem;
      /* padding: 40px; */
      flex-wrap: wrap; /* makes responsive */
      background-color: #f5f1eb;
      border-radius: 15px;
}

    .card {
      color: #fff;
      width: 100%;
      border-radius: 5px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      backdrop-filter: blur(8px);
      transition: transform 0.3s;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    .card:hover {
      transform: translateY(-8px);
    }

    .card-img {
      width: 25%;
      height: 75vh;
    }
    .card-img img {
      height: 75vh;
      background-size: cover;
      background-position: center;
    }
    /* .card h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
    } */

    /* .card p {
      font-size: 0.95em;
      margin-bottom: 15px;
    } */

.web-creator-footer {
  border-top: 1px solid #0b1527;
  color: #F4F1EA;
  padding: 10px 0;
  text-align: center;
}

.web-creator-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}

.web-creator-text {
  margin: 0;
  font-size: 16px;
}

.web-creator-social {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.web-creator-icon {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.web-creator-icon:hover {
  color: #1da1f2; /* Change hover color as you like */
}

.web-creator-copy {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

