/* =========================
   HERO SECTION
========================= */

.hero-section{
  max-width: 1450px;
  height: 82vh;
  margin: 30px auto;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 28px;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  border-radius: 28px;
}

.hero-content{
  position: relative;
  color: #fff;
  max-width: 760px;
  padding: 20px;
  animation: fadeUp 1.5s ease;
}

.hero-content h1{
  font-size: 62px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-content p{
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* HERO BUTTONS */

.hero-buttons{
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary{
  background: #b38b59;
  color: #fff;
}

.btn-primary:hover{
  background: #8d6b43;
  transform: translateY(-3px);
}

.btn-secondary{
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover{
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

/* =========================
   GENERAL SECTION STYLES
========================= */

.section-tag{
  display: inline-block;
  background: rgba(179,139,89,0.12);
  color: #b38b59;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.section-tag.light{
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding: 80px 20px;
  background: #fff;
}

.about-container{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-image img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.about-image img:hover{
  transform: scale(1.02);
}

.about-content h2{
  font-size: 46px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #111;
}

.about-content p{
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
  font-size: 15.5px;
}

/* STATS */

.about-stats{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat-box{
  background: #fafafa;
  padding: 22px;
  border-radius: 16px;
  min-width: 140px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.stat-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.stat-box h3{
  color: #b38b59;
  font-size: 30px;
  margin-bottom: 6px;
}

.stat-box span{
  color: #666;
  font-size: 13px;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section{
  max-width: 1250px;
  margin: 0 auto 40px auto;
  padding: 110px 30px;
  background: url('https://images.unsplash.com/photo-1508672019048-805c876b67e2?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 28px;
}

.mission-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  border-radius: 28px;
}

.mission-content{
  position: relative;
  max-width: 760px;
  margin: auto;
  color: #fff;
}

.mission-content h2{
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mission-content p{
  line-height: 1.9;
  opacity: 0.92;
  font-size: 16px;
}

/* =========================
   BOOK CLUB SECTION
========================= */

.bookclub-section{
  padding: 80px 20px;
  background: #f8f8f8;
}

.bookclub-container{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.bookclub-content h2{
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bookclub-content p{
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 15.5px;
}

/* FEATURES */

.bookclub-features{
  display: grid;
  gap: 18px;
  margin-bottom: 35px;
}

.feature-card{
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  border: 1px solid #eee;
}

.feature-card:hover{
  transform: translateY(-5px);
}

.feature-card h4{
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

.feature-card p{
  margin: 0;
  font-size: 14px;
  color: #666;
}

.bookclub-image img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* JOIN BUTTON */

.join-btn{
  display: inline-block;
  padding: 14px 34px;
  background: #b38b59;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.join-btn:hover{
  background: #8d6b43;
  transform: translateY(-3px);
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
  padding: 100px 20px;
  background: #111;
  text-align: center;
}

.cta-content{
  max-width: 650px;
  margin: auto;
}

.cta-content h2{
  color: #fff;
  font-size: 46px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p{
  color: rgba(255,255,255,0.72);
  margin-bottom: 35px;
  line-height: 1.9;
  font-size: 15.5px;
}

.cta-btn{
  display: inline-block;
  padding: 14px 34px;
  background: #b38b59;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.cta-btn:hover{
  background: #8d6b43;
  transform: translateY(-3px);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(40px);
  }

  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1500px){

  .hero-section{
    margin-left: 20px;
    margin-right: 20px;
  }

}

@media(max-width: 1280px){

  .mission-section{
    margin-left: 20px;
    margin-right: 20px;
  }

}

@media(max-width: 991px){

  .hero-section{
    height: 70vh;
    border-radius: 22px;
  }

  .hero-overlay{
    border-radius: 22px;
  }

  .hero-content{
    max-width: 95%;
  }

  .hero-content h1{
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-content p{
    font-size: 16px;
    line-height: 1.8;
  }

  .about-container,
  .bookclub-container{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-content,
  .bookclub-content,
  .mission-content,
  .cta-content{
    text-align: center;
  }

  .about-content h2,
  .mission-content h2,
  .bookclub-content h2,
  .cta-content h2{
    font-size: 31px;
    line-height: 1.3;
  }

  .about-content p,
  .mission-content p,
  .bookclub-content p,
  .cta-content p{
    font-size: 15px;
    line-height: 1.8;
  }

  .about-image img,
  .bookclub-image img{
    height: 320px;
  }

  .about-stats{
    justify-content: center;
  }

  .stat-box{
    flex: 1 1 140px;
    padding: 18px;
  }

  .feature-card{
    text-align: left;
  }

  .about-section,
  .bookclub-section,
  .cta-section{
    padding: 70px 20px;
  }

  .mission-section{
    margin-left: 20px;
    margin-right: 20px;
    padding: 80px 20px;
    border-radius: 22px;
  }

  .mission-overlay{
    border-radius: 22px;
  }

}

@media(max-width: 600px){

  .hero-section{
    height: 65vh;
    margin: 20px 15px;
  }

  .mission-section{
    margin: 0 15px 30px 15px;
  }

  .hero-content h1{
    font-size: 34px;
  }

  .hero-buttons{
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .join-btn,
  .cta-btn{
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .about-content h2,
  .mission-content h2,
  .bookclub-content h2,
  .cta-content h2{
    font-size: 28px;
  }

}

main > .archive-header {
  display: none !important;
}





/* =========================
   WE EXIST HERO
========================= */

.we-exist-hero{
    position: relative;
    max-width: 1450px;
    height: 78vh;
    margin: 30px auto;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.we-exist-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    z-index: 1;
}

.we-exist-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 20px;
    color: #fff;
    animation: fadeUp 1.2s ease;
}

.hero-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.we-exist-content h1{
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.we-exist-content p{
    font-size: 18px;
    line-height: 1.9;
    opacity: 0.9;
    color: #fff;
}

/* =========================
   SECTION TAG
========================= */

.section-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(179,139,89,0.12);
    color: #b38b59;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-tag.light{
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* =========================
   PURPOSE SECTION
========================= */

.purpose-section{
    padding: 90px 20px;
}

.purpose-container{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.purpose-text h2{
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.purpose-text p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 15.5px;
}

.purpose-points{
    display: grid;
    gap: 18px;
}

.purpose-card{
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 18px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.purpose-card:hover{
    transform: translateY(-5px);
}

.purpose-card h4{
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.purpose-card p{
    margin: 0;
    font-size: 14px;
}

.purpose-image img{
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* =========================
   VALUES SECTION
========================= */

.values-section{
    padding: 20px 20px 90px;
}

.values-container{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.value-box{
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 35px 28px;
    text-align: center;
    transition: 0.3s ease;
}

.value-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.value-icon{
    font-size: 42px;
    margin-bottom: 15px;
}

.value-box h3{
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
}

.value-box p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
   IMPACT SECTION
========================= */

.impact-section{
    position: relative;
    max-width: 1250px;
    margin: auto;
    padding: 110px 30px;
    border-radius: 30px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1521295121783-8a321d551ad2?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.impact-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.impact-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.impact-content h2{
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

.impact-content p{
    line-height: 1.9;
    opacity: 0.92;
    margin-bottom: 40px;
    color: #fff;
}

.impact-stats{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.impact-item{
    min-width: 180px;
    padding: 25px 30px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
}

.impact-item h3{
    font-size: 34px;
    margin-bottom: 8px;
    color: #fff;
}

.impact-item span{
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* =========================
   CTA SECTION
========================= */

.exist-cta-section{
    padding: 100px 20px;
    text-align: center;
}

.exist-cta-content{
    max-width: 700px;
    margin: auto;
}

.exist-cta-content h2{
    font-size: 46px;
    margin-bottom: 18px;
    color: #111;
}

.exist-cta-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.exist-btn{
    display: inline-block;
    padding: 14px 34px;
    border-radius: 40px;
    background: #b38b59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.exist-btn:hover{
    background: #8d6b43;
    transform: translateY(-3px);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1500px){

    .we-exist-hero,
    .impact-section{
        margin-left: 20px;
        margin-right: 20px;
    }

}

@media(max-width:991px){

    .we-exist-hero{
        height: 68vh;
    }

    .we-exist-content h1{
        font-size: 42px;
    }

    .we-exist-content p{
        font-size: 16px;
    }

    .purpose-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-container{
        grid-template-columns: 1fr;
    }

    .purpose-text,
    .impact-content,
    .exist-cta-content{
        text-align: center;
    }

    .purpose-text h2,
    .impact-content h2,
    .exist-cta-content h2{
        font-size: 32px;
    }

    .purpose-image img{
        height: 340px;
    }

    .impact-section{
        padding: 80px 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

}

@media(max-width:600px){

    .we-exist-hero{
        height: 62vh;
        margin: 20px 15px;
    }

    .we-exist-content h1{
        font-size: 34px;
    }

    .impact-section{
        margin: 0 15px;
    }

    .impact-item{
        width: 100%;
    }

}


/* =========================
   HERO SECTION
========================= */

.bookclub-hero{
    position: relative;
    max-width: 1450px;
    height: 80vh;
    margin: 30px auto;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1512820790803-83ca734da794?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.bookclub-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.bookclub-hero-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 20px;
    color: #fff;
    animation: fadeUp 1.2s ease;
}

.hero-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bookclub-hero-content h1{
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.bookclub-hero-content p{
    font-size: 18px;
    line-height: 1.9;
    opacity: 0.9;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn,
.join-btn{
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn{
    background: #b38b59;
    color: #fff;
}

.primary-btn:hover{
    background: #8d6b43;
    transform: translateY(-3px);
}

.secondary-btn{
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover{
    background: #fff;
    color: #111;
}

/* =========================
   GENERAL
========================= */

.section-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(179,139,89,0.12);
    color: #b38b59;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-tag.light{
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* =========================
   ABOUT SECTION
========================= */

.club-about-section{
    padding: 90px 20px;
}

.club-about-container{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.club-about-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.club-about-content h2{
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.club-about-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* STATS */

.club-stats{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.club-stat-box{
    background: #fafafa;
    border: 1px solid #eee;
    padding: 22px;
    border-radius: 18px;
    min-width: 140px;
}

.club-stat-box h3{
    color: #b38b59;
    font-size: 30px;
    margin-bottom: 6px;
}

.club-stat-box span{
    font-size: 13px;
    color: #666;
}

/* =========================
   ACTIVITIES
========================= */

.activities-section{
    padding: 20px 20px 90px;
}

.activities-header{
    text-align: center;
    margin-bottom: 50px;
}

.activities-header h2{
    font-size: 48px;
}

.activities-grid{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.activity-card{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 35px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.activity-card:hover{
    transform: translateY(-6px);
}

.activity-icon{
    font-size: 42px;
    margin-bottom: 18px;
}

.activity-card h3{
    font-size: 24px;
    margin-bottom: 12px;
}

.activity-card p{
    color: #666;
    line-height: 1.8;
}

/* =========================
   FEATURED BOOK
========================= */

.featured-book-section{
    position: relative;
    max-width: 1250px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    padding: 120px 30px;
    background: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.featured-book-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.featured-book-container{
    position: relative;
    z-index: 2;
}

.featured-book-content{
    max-width: 700px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.featured-book-content h2{
    font-size: 50px;
    margin-bottom: 18px;
}

.featured-book-content p{
    line-height: 1.9;
    margin-bottom: 35px;
    opacity: 0.92;
}

/* =========================
   MEMBERSHIP
========================= */

.membership-section{
    padding: 90px 20px;
}

.membership-container{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.membership-content h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.membership-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.membership-list{
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.membership-list li{
    margin-bottom: 14px;
    color: #444;
}

.membership-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* =========================
   CTA
========================= */

.club-cta-section{
    padding: 100px 20px;
    text-align: center;
}

.club-cta-content{
    max-width: 700px;
    margin: auto;
}

.club-cta-content h2{
    font-size: 48px;
    margin-bottom: 18px;
}

.club-cta-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1500px){

    .bookclub-hero,
    .featured-book-section{
        margin-left: 20px;
        margin-right: 20px;
    }

}

@media(max-width:991px){

    .bookclub-hero{
        height: 70vh;
    }

    .bookclub-hero-content h1{
        font-size: 42px;
    }

    .club-about-container,
    .membership-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .activities-grid{
        grid-template-columns: 1fr;
    }

    .club-about-content,
    .membership-content,
    .featured-book-content,
    .club-cta-content{
        text-align: center;
    }

    .club-about-content h2,
    .activities-header h2,
    .featured-book-content h2,
    .membership-content h2,
    .club-cta-content h2{
        font-size: 34px;
    }

    .club-about-image img,
    .membership-image img{
        height: 340px;
    }

    .featured-book-section{
        padding: 90px 20px;
    }

}

@media(max-width:600px){

    .bookclub-hero{
        height: 65vh;
        margin: 20px 15px;
    }

    .featured-book-section{
        margin: 0 15px;
    }

    .bookclub-hero-content h1{
        font-size: 34px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn,
    .join-btn{
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

}


/* =========================
   HERO SECTION
========================= */

.writebook-hero{
    position: relative;
    max-width: 1450px;
    height: 80vh;
    margin: 30px auto;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.writebook-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.writebook-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 20px;
    color: #fff;
    animation: fadeUp 1.2s ease;
}

.hero-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.writebook-content h1{
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.writebook-content p{
    font-size: 18px;
    line-height: 1.9;
    opacity: 0.92;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn{
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn{
    background: #b38b59;
    color: #fff;
}

.primary-btn:hover{
    background: #8d6b43;
    transform: translateY(-3px);
}

.secondary-btn{
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover{
    background: #fff;
    color: #111;
}

/* =========================
   GENERAL
========================= */

.section-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(179,139,89,0.12);
    color: #b38b59;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-tag.light{
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* =========================
   INTRO SECTION
========================= */

.intro-section{
    padding: 90px 20px;
}

.intro-container{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.intro-content h2{
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.intro-features{
    display: grid;
    gap: 18px;
}

.feature-box{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 24px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.feature-box:hover{
    transform: translateY(-5px);
}

.feature-box h4{
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-box p{
    margin: 0;
    font-size: 14px;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section{
    padding: 20px 20px 90px;
}

.process-header{
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2{
    font-size: 48px;
}

.process-grid{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.process-card{
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 35px;
    transition: 0.3s ease;
}

.process-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.process-number{
    font-size: 42px;
    color: #b38b59;
    margin-bottom: 15px;
    font-weight: bold;
}

.process-card h3{
    font-size: 24px;
    margin-bottom: 12px;
}

.process-card p{
    color: #666;
    line-height: 1.8;
}

/* =========================
   FEATURE SECTION
========================= */

.feature-highlight-section{
    position: relative;
    max-width: 1250px;
    margin: auto;
    padding: 120px 30px;
    border-radius: 30px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.feature-highlight-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.feature-highlight-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.feature-highlight-content h2{
    font-size: 50px;
    margin-bottom: 18px;
}

.feature-highlight-content p{
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.92;
}

.highlight-stats{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.highlight-box{
    min-width: 180px;
    padding: 25px 30px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
}

.highlight-box h3{
    font-size: 34px;
    margin-bottom: 8px;
}

.highlight-box span{
    font-size: 14px;
}

/* =========================
   START SECTION
========================= */

.start-book-section{
    padding: 90px 20px;
}

.start-book-container{
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.start-book-content h2{
    font-size: 48px;
    margin-bottom: 20px;
}

.start-book-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.book-list{
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.book-list li{
    margin-bottom: 14px;
    color: #444;
}

.start-book-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* =========================
   CTA
========================= */

.writebook-cta{
    padding: 100px 20px;
    text-align: center;
}

.writebook-cta-content{
    max-width: 700px;
    margin: auto;
}

.writebook-cta-content h2{
    font-size: 48px;
    margin-bottom: 18px;
}

.writebook-cta-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1500px){

    .writebook-hero,
    .feature-highlight-section{
        margin-left: 20px;
        margin-right: 20px;
    }

}

@media(max-width:991px){

    .writebook-hero{
        height: 70vh;
    }

    .writebook-content h1{
        font-size: 42px;
    }

    .intro-container,
    .start-book-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-grid{
        grid-template-columns: 1fr;
    }

    .intro-content,
    .start-book-content,
    .feature-highlight-content,
    .writebook-cta-content{
        text-align: center;
    }

    .intro-content h2,
    .process-header h2,
    .feature-highlight-content h2,
    .start-book-content h2,
    .writebook-cta-content h2{
        font-size: 34px;
    }

    .intro-image img,
    .start-book-image img{
        height: 340px;
    }

    .feature-highlight-section{
        padding: 90px 20px;
    }

}

@media(max-width:600px){

    .writebook-hero{
        height: 65vh;
        margin: 20px 15px;
    }

    .feature-highlight-section{
        margin: 0 15px;
    }

    .writebook-content h1{
        font-size: 34px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn{
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

}

.contact-mini-section{
    padding: 60px 20px;
    background: #fafafa;
}

.contact-mini-container{
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact-mini-container h2{
    font-size: 36px;
    margin-bottom: 30px;
    color: #111;
}

.contact-mini-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-item{
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.contact-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.contact-item h4{
    margin-bottom: 10px;
    font-size: 18px;
    color: #111;
}

.contact-item p{
    color: #666;
    font-size: 15px;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .contact-mini-grid{
        grid-template-columns: 1fr;
    }

    .contact-mini-container h2{
        font-size: 28px;
    }
}


/*Redisigning the site*/

/* =========================================================
   NAROK NARRATIVE HEADER OVERRIDE (IMPORTANT)
   - Increases logo size
   - Improves navigation readability
   - Keeps layout intact (no breaking theme structure)
   - Mobile-friendly adjustments included
========================================================= */

/* ===== HEADER BASE ===== */
header.main-header.header-style-1{
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* ===== TOP HEADER SPACING ===== */
header .header-top{
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* ===== LOGO (IMPORTANT OVERRIDE) ===== */
header .logo{
    max-height: 85px !important;   /* increased from 50px */
    width: auto !important;
    transition: 0.3s ease;
}

header .logo:hover{
    transform: scale(1.05);
}

/* ===== NAVIGATION LINKS (DESKTOP) ===== */
header .main-menu > li > a{
    font-size: 16.5px !important;   /* increased readability */
    font-weight: 500;
    padding: 12px 14px;
    color: #222 !important;
    letter-spacing: 0.2px;
    transition: 0.3s ease;
}

/* hover effect */
header .main-menu > li > a:hover{
    color: #b38b59 !important;
}

/* active menu */
header .main-menu > li.current-menu-item > a{
    color: #b38b59 !important;
    font-weight: 600;
}

/* dropdown links */
header .sub-menu li a{
    font-size: 15px !important;
    padding: 8px 10px;
}

/* ===== RIGHT SIDE BUTTON (JOIN BOOK CLUB) ===== */
header .btn.btn-radius{
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    transition: 0.3s ease;
}

header .btn.btn-radius:hover{
    transform: translateY(-2px);
}

/* ===== SEARCH BUTTON TEXT ===== */
header .search-icon span{
    font-size: 14px;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 991px){

    header .logo{
        max-height: 65px !important;
    }

    header .header-top-right{
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    header .btn.btn-radius{
        padding: 8px 14px !important;
        font-size: 13px !important;
    }

}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 576px){

    header .logo{
        max-height: 55px !important;
    }

    header .search-icon span{
        font-size: 12px;
    }

}



/* =========================================================
   NAROK FOOTER FINAL PREMIUM VERSION
   - Fixes newsletter alignment (INLINE layout)
   - Keeps tags readable
   - Modern dark luxury UI
========================================================= */

/* ===== FOOTER BASE ===== */
footer{
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%) !important;
    color: #ddd;
    padding-top: 80px !important;
    padding-bottom: 30px !important;
}

/* ===== WIDGET BOXES ===== */
footer .sidebar-widget{
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 18px;
    border: none !important;
}

/* ===== HEADINGS ===== */
footer h5{
    color: #fff !important;
    font-size: 18px;
    margin-bottom: 25px !important;
}

/* =========================================================
   TAGS (CLEAN + VISIBLE)
========================================================= */
footer .tagcloud a{
    display: inline-block;
    padding: 8px 14px;
    margin: 5px 5px 0 0;
    border-radius: 30px;

    background: #f4f4f4 !important;
    color: #111 !important;

    font-size: 12px;
    border: none !important;
    transition: 0.3s ease;
}

footer .tagcloud a:hover{
    background: #b38b59 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* =========================================================
   NEWSLETTER FIX (INLINE ROW - IMPORTANT FIX)
========================================================= */

footer .newsletter-form{
    display: flex !important;
    flex-direction: row !important;   /* KEY FIX: inline layout */
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap; /* keeps responsive safety */
}

/* email input */
footer .newsletter-form .form-control{
    flex: 1;
    min-width: 200px;

    border-radius: 12px !important;
    padding: 13px 14px !important;

    border: none !important;
    outline: none !important;

    font-size: 14px;
    margin-bottom: 0 !important;
}

/* submit button */
footer .newsletter-form .btn{
    padding: 13px 20px !important;
    border-radius: 12px !important;

    background: linear-gradient(135deg, #b38b59, #8d6b43) !important;
    color: #fff !important;

    border: none !important;
    font-weight: 600;
    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 10px 20px rgba(0,0,0,0.25);

    margin-bottom: 0 !important;
}

/* hover */
footer .newsletter-form .btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
    filter: brightness(1.05);
}

/* click */
footer .newsletter-form .btn:active{
    transform: translateY(0px);
}

/* =========================================================
   TEXT + LINKS
========================================================= */
footer p,
footer li,
footer a{
    color: rgba(255,255,255,0.72) !important;
    font-size: 14.5px;
    line-height: 1.8;
}

footer a:hover{
    color: #b38b59 !important;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */
footer .footer-copy-right{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    margin-top: 40px;
}

/* =========================================================
   RESPONSIVE FIX
========================================================= */
@media(max-width: 768px){

    footer .newsletter-form{
        flex-direction: column !important; /* stack on mobile */
    }

    footer .newsletter-form .btn{
        width: 100%;
    }

}






/* =========================================================
   PURPOSE SECTION REDESIGN
========================================================= */

.purpose-section{
    padding: 100px 20px;
    background: #faf7f2;
}

.purpose-container{
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: start;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.section-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(179,139,89,0.12);
    color: #b38b59;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.purpose-text h2{
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 35px;
    color: #111;
    max-width: 700px;
}

/* =========================================================
   CONTENT STYLING
========================================================= */

.purpose-content{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.purpose-content p{
    color: #555;
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

/* =========================================================
   BLOCKQUOTE
========================================================= */

.purpose-content blockquote{
    margin: 10px 0;
    padding: 25px 30px;

    border-left: 4px solid #b38b59;

    background: #fff;
    border-radius: 16px;

    font-size: 20px;
    line-height: 1.7;
    color: #222;
    font-style: italic;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================================================
   HIGHLIGHT LINE
========================================================= */

.highlight-line{
    font-size: 20px !important;
    color: #111 !important;
    font-weight: 600;
}

/* =========================================================
   PURPOSE CARDS
========================================================= */

.purpose-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: 10px 0;
}

.purpose-card{
    background: #fff;
    padding: 28px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.purpose-card:hover{
    transform: translateY(-6px);
}

.purpose-card h4{
    margin-bottom: 12px;
    font-size: 18px;
    color: #111;
}

.purpose-card p{
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   MISSION BOX
========================================================= */

.mission-highlight{
    background: linear-gradient(135deg, #111, #1e1e1e);
    padding: 35px;
    border-radius: 24px;
    color: #fff;
}

.mission-highlight h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.mission-highlight p,
.mission-highlight li{
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
}

.mission-highlight ul{
    padding-left: 18px;
    margin-top: 15px;
}

/* =========================================================
   SERVICES BOX
========================================================= */

.services-box{
    background: #fff;
    padding: 35px;
    border-radius: 24px;

    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.services-box h3{
    font-size: 28px;
    margin-bottom: 18px;
    color: #111;
}

.services-box p{
    margin-bottom: 15px;
}

/* button */
.purpose-btn{
    display: inline-block;
    margin-top: 15px;

    padding: 14px 26px;
    border-radius: 40px;

    background: linear-gradient(135deg, #b38b59, #8d6b43);
    color: #fff;
    text-decoration: none;

    font-weight: 600;
    transition: 0.3s ease;
}

.purpose-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

/* =========================================================
   IMAGE
========================================================= */

.purpose-image{
    position: sticky;
    top: 120px;
}

.purpose-image img{
    width: 100%;
    height: 850px;
    object-fit: cover;
    border-radius: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1100px){

    .purpose-container{
        grid-template-columns: 1fr;
    }

    .purpose-image{
        position: relative;
        top: auto;
    }

    .purpose-image img{
        height: 500px;
    }

}

@media(max-width: 768px){

    .purpose-section{
        padding: 70px 20px;
    }

    .purpose-text h2{
        font-size: 36px;
    }

    .purpose-grid{
        grid-template-columns: 1fr;
    }

    .purpose-content blockquote{
        font-size: 18px;
        padding: 22px;
    }

    .services-box,
    .mission-highlight{
        padding: 28px;
    }

}

@media(max-width: 576px){

    .purpose-text h2{
        font-size: 30px;
    }

    .purpose-content p{
        font-size: 15px;
        line-height: 1.9;
    }

    .purpose-image img{
        height: 350px;
    }

}




/* =========================================================
   CLUB ABOUT SECTION (CLEAN + READABLE DESIGN)
========================================================= */

.club-about-section{
    padding: 100px 20px;
    background: #faf7f2;
}

.club-about-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* IMAGE */
.club-about-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* TEXT */
.club-about-content h2{
    font-size: 44px;
    margin: 18px 0 25px;
    line-height: 1.2;
    color: #111;
}

.club-about-content p{
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 18px;
}

/* QUOTE */
.club-about-content blockquote{
    background: #fff;
    border-left: 4px solid #b38b59;
    padding: 22px 25px;
    border-radius: 16px;
    font-style: italic;
    font-size: 18px;
    color: #222;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HIGHLIGHT TEXT */
.highlight-text{
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* BUTTON */
.club-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 14px 26px;
    border-radius: 40px;
    background: linear-gradient(135deg, #b38b59, #8d6b43);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.club-btn:hover{
    transform: translateY(-3px);
}

/* =========================================================
   WRITE YOUR BOOK SECTION
========================================================= */

.writebook-section{
    padding: 100px 20px;
    background: #fff;
}

.writebook-container{
    max-width: 900px;
    margin: auto;
}

.writebook-container h2{
    font-size: 42px;
    margin: 15px 0 20px;
    color: #111;
}

/* BOOK CARDS */
.book-types{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: 30px 0;
}

.book-card{
    background: #faf7f2;
    padding: 25px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.book-card:hover{
    transform: translateY(-5px);
}

.book-card h4{
    margin-bottom: 10px;
    color: #111;
}

.book-card p{
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 900px){

    .club-about-container{
        grid-template-columns: 1fr;
    }

    .book-types{
        grid-template-columns: 1fr;
    }

    .club-about-content h2,
    .writebook-container h2{
        font-size: 32px;
    }

    .club-about-image img{
        height: 380px;
    }
}



/* =========================================================
   WRITE YOUR BOOK PAGE DESIGN
========================================================= */

/* GLOBAL */
body{
    margin: 0;
    font-family: Arial, sans-serif;
    background: #faf7f2;
    color: #333;
}

/* =========================================================
   HERO
========================================================= */

.wyb-hero{
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.wyb-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.wyb-content{
    position: relative;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.wyb-content h1{
    font-size: 52px;
    margin: 20px 0;
}

.wyb-content blockquote{
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

/* =========================================================
   TAG
========================================================= */

.section-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(179,139,89,0.2);
    color: #b38b59;
    font-size: 13px;
}

/* =========================================================
   STORY
========================================================= */

.wyb-story{
    padding: 80px 20px;
}

.wyb-container{
    max-width: 900px;
    margin: auto;
}

.wyb-story p{
    font-size: 16px;
    line-height: 2;
    margin-bottom: 18px;
}

.highlight-text{
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

/* =========================================================
   SERVICES
========================================================= */

.wyb-services{
    padding: 60px 20px;
    background: #fff;
}

.wyb-services h2{
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.wyb-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.wyb-card{
    background: #faf7f2;
    padding: 25px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.wyb-card:hover{
    transform: translateY(-5px);
}




/* todays css */


/* ========================================================= WRITE YOUR BOOK CONTENT SECTION ========================================================= */ .writebook-content-section{ padding: 110px 20px; background: #faf7f2; overflow: hidden; } /* CONTAINER */ .writebook-container{ max-width: 1050px; margin: auto; } /* ========================================================= INTRO ========================================================= */ .writebook-intro{ text-align: center; margin-bottom: 70px; } .section-tag{ display: inline-block; padding: 8px 18px; border-radius: 30px; background: rgba(179,139,89,0.12); color: #b38b59; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; } .writebook-intro h2{ font-size: 58px; line-height: 1.1; margin: 25px 0; color: #111; } .writebook-intro blockquote{ max-width: 750px; margin: auto; background: #fff; padding: 30px; border-radius: 24px; border-left: 4px solid #b38b59; font-size: 20px; line-height: 1.8; font-style: italic; color: #222; box-shadow: 0 12px 35px rgba(0,0,0,0.06); } /* ========================================================= CONTENT ========================================================= */ .writebook-content{ max-width: 900px; margin: auto; } .writebook-content p{ font-size: 18px; line-height: 2.1; color: #555; margin-bottom: 32px; } /* HIGHLIGHT */ .story-highlight{ margin: 45px 0; padding: 40px; border-radius: 30px; background: linear-gradient(135deg,#111,#1d1d1d); position: relative; overflow: hidden; } .story-highlight::before{ content: ""; position: absolute; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -70px; right: -70px; } .story-highlight p{ color: #fff; font-size: 24px; line-height: 1.8; margin: 0; font-weight: 500; position: relative; z-index: 2; } /* ========================================================= BOOK SERVICES ========================================================= */ .book-services{ margin-top: 90px; } .services-header{ text-align: center; margin-bottom: 45px; } .services-header h3{ font-size: 42px; color: #111; } .book-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; } .book-card{ background: #fff; padding: 35px; border-radius: 28px; box-shadow: 0 12px 35px rgba(0,0,0,0.06); transition: 0.4s ease; position: relative; overflow: hidden; } .book-card:hover{ transform: translateY(-10px); } .book-number{ font-size: 70px; font-weight: 700; color: rgba(179,139,89,0.12); line-height: 1; margin-bottom: 15px; } .book-card h4{ font-size: 24px; color: #111; margin-bottom: 15px; } .book-card p{ color: #666; line-height: 1.9; font-size: 15px; } /* ========================================================= FINAL TEXT ========================================================= */ .final-story-section{ max-width: 850px; margin: 90px auto 0; } .final-story-section p{ font-size: 18px; line-height: 2; color: #555; margin-bottom: 28px; } /* ========================================================= CTA BOX ========================================================= */ .writebook-cta-box{ margin-top: 90px; background: #fff; padding: 60px; border-radius: 35px; text-align: center; box-shadow: 0 15px 45px rgba(0,0,0,0.06); } .writebook-cta-box h3{ font-size: 42px; color: #111; margin-bottom: 20px; } .writebook-cta-box p{ max-width: 700px; margin: auto; line-height: 1.9; color: #666; font-size: 17px; } /* FORM */ .writebook-form{ max-width: 650px; margin: 40px auto 0; display: flex; gap: 15px; flex-wrap: wrap; } .writebook-form input{ flex: 1; min-width: 240px; height: 60px; border-radius: 18px; border: 1px solid #e8e8e8; padding: 0 20px; font-size: 15px; background: #fafafa; } .writebook-form input:focus{ outline: none; border-color: #b38b59; } .writebook-form button{ width: 100%; height: 60px; border: none; border-radius: 18px; background: linear-gradient(135deg,#b38b59,#8f6a43); color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s ease; } .writebook-form button:hover{ transform: translateY(-3px); } /* ========================================================= RESPONSIVE ========================================================= */ @media(max-width: 992px){ .book-grid{ grid-template-columns: 1fr; } .writebook-intro h2{ font-size: 44px; } } @media(max-width: 768px){ .writebook-content-section{ padding: 80px 20px; } .writebook-intro h2{ font-size: 36px; } .writebook-intro blockquote{ font-size: 17px; padding: 25px; } .writebook-content p, .final-story-section p{ font-size: 16px; line-height: 1.95; } .story-highlight{ padding: 30px; } .story-highlight p{ font-size: 20px; } .writebook-cta-box{ padding: 40px 25px; } .writebook-cta-box h3{ font-size: 32px; } }

.wyb-card h3{
    margin-bottom: 10px;
}

/* =========================================================
   CTA
========================================================= */

.wyb-cta{
    padding: 80px 20px;
    text-align: center;
}

.wyb-btn{
    margin-top: 20px;
    padding: 14px 26px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #b38b59, #8d6b43);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

/* =========================================================
   MODAL
========================================================= */

.wyb-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.wyb-modal-content{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.wyb-modal-content input{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.wyb-modal-content button{
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #b38b59;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* CLOSE */
.close{
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px){

    .wyb-content h1{
        font-size: 34px;
    }

    .wyb-grid{
        grid-template-columns: 1fr;
    }
}




/* =========================================================
   WRITE YOUR BOOK BUTTON LINK FIX
========================================================= */

.writebook-form{
    max-width: 650px;
    margin: 40px auto 0;

    display: flex;
    justify-content: center;
}

/* LINK */
.writebook-form a{
    width: 100%;
    text-decoration: none !important;
}

/* BUTTON */
.writebook-form a button{
    width: 100%;
    height: 68px;

    border: none;
    border-radius: 20px;

    background: linear-gradient(135deg,#b38b59,#8f6a43);

    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;

    transition: all 0.35s ease;

    box-shadow: 0 15px 35px rgba(179,139,89,0.25);

    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.writebook-form a button:hover{
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(179,139,89,0.35);
}

/* LIGHT SHINE EFFECT */
.writebook-form a button::before{
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transition: 0.7s ease;
}

.writebook-form a button:hover::before{
    left: 120%;
}

/* ACTIVE */
.writebook-form a button:active{
    transform: scale(0.98);
}

/* MOBILE */
@media(max-width: 768px){

    .writebook-form a button{
        height: 62px;
        font-size: 16px;
        border-radius: 18px;
    }

}




/* =========================================================
   FORCE BIGGER HEADER LOGO
========================================================= */

/* TARGET EXACT IMAGE */
.header-top img.logo{
    max-height: 120px !important;
    height: 120px !important;
    width: auto !important;

    object-fit: contain !important;
}

/* REMOVE HEIGHT RESTRICTIONS FROM PARENT */
.header-top .col-md-3,
.header-top .col-6{
    display: flex !important;
    align-items: center !important;
}

/* GIVE HEADER MORE SPACE */
.header-top{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* REMOVE ROW RESTRICTIONS */
.header-top .row{
    min-height: 120px !important;
    align-items: center !important;
}

/* DESKTOP */
@media(min-width: 992px){

    .header-top img.logo{
        max-height: 140px !important;
        height: 140px !important;
    }

    .header-top .row{
        min-height: 140px !important;
    }

}

/* TABLET */
@media(max-width: 991px){

    .header-top img.logo{
        max-height: 100px !important;
        height: 100px !important;
    }

}

/* MOBILE */
@media(max-width: 576px){

    .header-top img.logo{
        max-height: 80px !important;
        height: 80px !important;
    }

    .header-top .row{
        min-height: 90px !important;
    }

}


.writebook-hero .writebook-content p,
.writebook-hero .writebook-content span,
.writebook-hero .writebook-content .hero-tag{
    color: #fff !important;
}



/* ========================================== PARTNERS SECTION ========================================== */ .partners-section{ padding: 100px 20px; background: #faf7f2; overflow: hidden; } .partners-container{ max-width: 1200px; margin: auto; } .partners-header{ text-align: center; max-width: 750px; margin: 0 auto 60px; } .partners-header h2{ font-size: 46px; margin-bottom: 20px; } .partners-header p{ color: #666; line-height: 1.9; } /* ========================================== SLIDER ========================================== */ .partners-slider{ overflow: hidden; width: 100%; } .partners-track{ display: flex; gap: 25px; width: max-content; } .partner-logo{ width: 180px; height: 130px; background: #fff; border-radius: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .partner-logo img{ width: 120px; height: 60px; object-fit: contain; } /* ========================================== MOBILE AUTO SLIDE ========================================== */ @media (max-width: 768px){ .partners-track{ animation: partnerScroll 25s linear infinite; } .partner-logo{ width: 150px; height: 110px; } .partner-logo img{ width: 100px; height: 50px; } } @keyframes partnerScroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }


.container .col-lg-6.align-self-center h2 {
    font-size: 28px;
    line-height: 1.3;
}