html {
  scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300;1,400&family=Jost:wght@300;400;500&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
--gold: #c9a84c;
--gold-light: #e8cc85;
--gold-glow: rgba(201, 168, 76, 0.45);
--ink: #0d0c0a;
--cream: #f5f0e8;
--muted: #7a7060;
--bg: #100f0d;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    background: #100f0d;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 0.15em;
}

h1 em {
    font-style: italic;
    color: var(--gold-light);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  color: #f5f0e8;
  margin-bottom: 0.2em;
}

h2 em {
  font-style: italic;
  color: #e8cc85;
}

h3 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.75rem, 1.1vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
}

p{
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,240,232,0.65);
    margin-bottom: 2.8rem;
}

/* Primary */
a.btn-primary {
  display: inline-block;
  background: #c9a84c;
  color: #0d0c0a;
  border: none;
  border-radius: 3px;
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.18s;
  text-align: center;
}

a.btn-primary:hover {
  background: #e8cc85;
  transform: translateY(-1px);
}

a.btn-primary:active { transform: translateY(0); }

/* Secondary */
a.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  border-radius: 3px;
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.18s;
}

a.btn-secondary:hover {
  border-color: #e8cc85;
  color: #e8cc85;
  transform: translateY(-1px);
}

a.btn-secondary:active { transform: translateY(0); }

.eyebrow {
font-family: 'Jost', sans-serif;
font-size: clamp(10px, 1.1vw, 12px);
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1.4rem;
display: flex;
align-items: center;
gap: 10px;
}

.eyebrow::before {
content: '';
display: inline-block;
width: 32px;
height: 1px;
background: var(--gold);
opacity: 0.7;
}


























nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    gap: 20px;
}

nav .main{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    background-color: black;
    width: 100%;
    height: 100px;
}


nav .main .container1{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / 2;
}

nav .main .container1 a{
    align-self: center;
    color: #fff;
    text-decoration: none;
    background: none;
}

nav .main .container1 span{
    color: #c9a84c;
}

nav .main .container1 img{
    height: 50px;
    vertical-align: middle;
}

nav .main .container2{
    display: flex;
    align-items: center;   /* vertically centers content */
    justify-content: center; /* centers the ul itself */
    grid-column: 2 / 3;
    color: #fff;
}

nav .main .container2 ul{
    display: flex;
    justify-content: space-evenly; /* even spacing between items */
    align-items: center;           /* vertical alignment */
    width: 100%;                   /* make ul stretch across container2 */
    list-style: none;              /* remove default bullets */
    padding: 0;
    margin: 0;
}

nav .main .container2 li{
    text-align: center;
}

nav .main .container2 li a{
    text-decoration: none;
    color: #e0e6fa;
}

nav .main .container2 li a:hover{
    color: #c9a84c;
    transition: .8s;
}

nav .main .container3{
    display: flex;
    align-items: center;
    text-align: center;
    grid-column: 3 / 4;
    justify-content: center;
    gap: 5px;
}

.popup{
    display: none;
}

.popup button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: none;
}

.popup i{
    font-size: 2rem;
    color: black;
    transform: scaleX(-1);
}

.nav-popup{
    display: none;
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 55%;
    background: #fff;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.nav-popup.active {
  display: block;
}


.close-popup {
    position: absolute;
    right: 0;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-popup .logo{
    margin-left: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.nav-popup .logo a{
    text-decoration: none;
    color: black;
    font-size: 23px;
}
.nav-popup .logo a span{
    color: #c9a84c;
}

.nav-popup .logo img{
    width: 100px;
    height: 100px;
    vertical-align: middle;
}


.popup-menu li {
    list-style: none;
    margin: 1.5rem 0;
}

.popup-content{
    margin-top: 50px;
}

.popup-content a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}

@media screen and (max-width: 1100px) {

    nav .main{
        grid-template-columns: 1fr 1fr;
        width: 90%;
    }
    nav .main .container2{
        display: none;
    }

    .popup{
        display: flex;
        width: 10%;
        color: #000000;
    }

    nav .main .container3{
    grid-column: 2 / 3;
    }

    .popup-content{
    text-align: center;
    }

    .popup-menu{
    padding: 0;
    } 
    
    .nav-popup .logo a{
    font-size: 20px;
    }

    .nav-popup .logo img{
    width: 80px;
    height: 80px;
    }

    .popup button{
        display: flex;
    }
}
/* ------------------------------------------------------------Navbar and Popup End--------------------------------------------------------------------*/
/*-------------------------------------------------------------Header Section Start--------------------------------------------------------------------*/
.banner-container {
    position: relative;
    width: 90%;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
    width: 100%; /* Add this */
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0; /* Remove horizontal padding */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.banner-content {
    display: flex;
    width: 100%;
    max-width: 90%; /* Add max-width to center content */
    margin: 0 auto; /* Center the content */
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    padding: 0 40px; /* Move padding here instead */
}
.banner-text {
    flex: 1;
    padding: 20px;
    color: white;
    max-width: 60%;
}

.banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-text h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}



.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.banner-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 95%; /* Match the banner content max-width */
    left: 50%;
    transform: translate(-50%, -50%); /* Center the nav */
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.nav-button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
    background-color: white;
    transform: scale(1.1);
}

.nav-button svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
    .banner-carousel {
        height: 350px;
    }
    
    .banner-slide {
        padding: 0; /* Ensure no padding */
    }
    
    .banner-content {
        max-width: 100%; /* Remove max-width constraint */
        padding: 0 20px; /* Adjust padding for mobile */
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        max-width: 100%;
        padding: 10px;
    }
    
    .banner-text h2 {
        font-size: 1.8rem;
    }
    
    .banner-text h3 {
        font-size: 1.1rem;
    }
    
    .banner-image {
        max-width: 100%;
        margin-top: 10px;
    }
    
    .banner-image img {
        max-height: 180px;
    }
    
    .carousel-nav {
        max-width: 100%; /* Remove max-width constraint */
        padding: 0 10px; /* Reduce padding */
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 300px;
    }
    
    .banner-content {
        padding: 0 15px; /* Further reduce padding */
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .banner-text h3 {
        font-size: 1rem;
    }
    
    
    .nav-button {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav {
        padding: 0 5px; /* Minimal padding */
    }
}
/*-------------------------------------------------------------Header Section End--------------------------------------------------------------------*/
/*-------------------------------------------------------------Collection Section Start--------------------------------------------------------------------*/

/* ── Section shell ── */
.collection {
  width: 90%;
  margin: 60px auto;
  text-align: center;
}

.coll-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.coll-eyebrow::before,
.coll-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.6;
}

.coll-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f5f0e8;
  margin-bottom: 0.2em;
}

.coll-heading em {
  font-style: italic;
  color: #e8cc85;
}

.coll-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 1.1rem auto 1.2rem;
}

.coll-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  max-width: 520px;
  margin: 0 auto 2.4rem;
  line-height: 1.8;
}

/* ── Filter nav ── */
.collnav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.collnav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #c9a84c;
  padding: 9px 22px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 3px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.collnav a:hover {
  border-color: rgba(201, 168, 76, 0.6);
  color: #e8cc85;
}

.collnav a.active {
  background: #c9a84c;
  color: #0d0c0a;
  border-color: #c9a84c;
}

/* ── Grid ── */
.book-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start; /* let grid rows size naturally */
}

/* Each row of books must share equal height — achieved via subgrid-like 
   approach: the card uses flex-column, image is fixed height, 
   book-info grows to fill and pushes button to bottom */
.book {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  height: 100%;
}

.book:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

/* ── Image box — fixed height so all cards are level ── */
.image-box {
  position: relative;
  width: 100%;
  height: 260px;       /* fixed — keeps all cards in a row same top height */
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.book:hover .image-box img {
  transform: scale(1.04);
}

/* ── Genre badge ── */
.genre {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0d0c0a;
  background: #c9a84c;
  padding: 4px 10px;
  border-radius: 0 0 3px 0;
  z-index: 1;
}

/* ── Book info — flex-grows to fill remaining space ── */
.book-info {
  display: flex;
  flex-direction: column;
  flex: 1;              /* fill all remaining card height */
  padding: 14px 14px 16px;
  text-align: left;
  border-top: none;
}

.author {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin: 0 0 6px;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.35;
  color: #f5f0e8;
  margin: 0 0 10px;
  flex: 1;              /* title grows — pushes price + btn to bottom */
}

.price {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #c9a84c;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}

/* btn-primary already defined globally — just make it full width here */
.book .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
}

/* ── Hidden/shown via JS filter ── */
.book.hidden {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .book-container {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .collection {
    width: 95%;
  }

  .book-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .image-box {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .collection {
    width: 100%;
  }

  .collnav {
    gap: 8px;
  }

  .collnav a {
    font-size: 0.72rem;
    padding: 8px 14px;
  }

  .book-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .image-box {
    height: 170px;
  }

  .book-info {
    padding: 10px 10px 12px;
  }
}

@media (max-width: 360px) {
  .book-container {
    grid-template-columns: 1fr;
  }
}

/*-------------------------------------------------------------Collection Section End--------------------------------------------------------------------*/
/*-------------------------------------------------------------Advert Section Start--------------------------------------------------------------------*/
.advert{
    position: relative;
    width: 90%;
    height: 500px;
    margin: 50px auto;
    /* gradient overlay left-to-right (7% -> 100% opacity) on top of the image */
    background-image: linear-gradient(to right, rgba(17,17,17,0.07) 0%, rgba(17,17,17,1) 100%), url(../visual/pexels-pixabay-267684.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
}

/* right-aligned content container so p + a stay together and easy to reposition */
.advert .right-content{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    text-align: right;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}

.advert p{
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    width: 100%;
}

/* Tablet */
@media (max-width: 768px) {
    .advert{
        height: 380px;
    }
    .advert .right-content{
        right: 20px;
        width: 40%;
        gap: 14px;
    }
    .advert p{
        font-size: 24px;
    }
    .advert a{
        font-size: 16px;
        padding: 8px 20px;
    }
}

/* Phone */
@media (max-width: 480px) {
    .advert{
        height: 300px;
        margin: 30px 10px;
        width: calc(100% - 20px);
    }
    /* stack center on small screens for readability */
    .advert .right-content{
        position: absolute;
        left: 50%;
        right: auto;
        width: 90%;
        transform: translate(-50%, -40%);
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .advert p{
        font-size: 20px;
    }
    .advert a{
        font-size: 15px;
        padding: 8px 18px;
    }
}
/*-------------------------------------------------------------Advert Section End--------------------------------------------------------------------*/
/*-------------------------------------------------------------Kids Books Section Start--------------------------------------------------------------------*/
.kidsbooks{
    margin: 0 auto;
    width: 90%;
    text-align: center;
}
/*-------------------------------------------------------------Footer Start--------------------------------------------------------------------*/
/* ...existing code ... */

footer {
    background: black;
    padding: 40px 20px 20px;
    margin-top: 150px;
    color: #fff;
}

.footer-container {
    max-width: 90%;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.brand-name span{
    color: #c9a84c;
}

.brand-tagline {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #c9a84c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #c9a84c;
    color: white;
    transform: translateY(-2px);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #c9a84c;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a84c;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item strong {
    color: #fff;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c9a84c
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.footer-bottom a {
    color: #c9a84c;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Newsletter */
.newsletter-container {
    width: 100%;
}
.newsletter{ 
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: center;
}
.newsletter input{
    flex: 1 1 auto;
    min-width: 0;              /* important to allow shrinking inside grid/flex */
    padding: 10px 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}
.visually-hidden{
    display: none;
}
.newsletter button{
    flex: 0 0 auto;
    background: #c9a84c;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}


@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-name {
        font-size: 24px;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .contact-info {
        gap: 12px;
    }
}
/*-------------------------------------------------------------Footer End--------------------------------------------------------------------*/
/* ------------------------------------------------------------End of Index Page--------------------------------------------------------------------*/

.shheader{
    margin-top: 100px;
    color: #f5f0e8;
}

.shheader .banner-image img{
    max-height: 400px;
}

.shbanner-slide .banner-content .banner-text h2{
    color: #f5f0e8;
    font-weight: 300;
}

.shbanner-slide .banner-content .banner-text span{
    color: #c9a84c;
    font-weight: 500;
}

.stats{
    display: flex;
    gap: 5%;
    margin-top: 20px;
}

.rec i{
    color: #c9a84c;
}
.rec p{
    font-size: 10px;
}

/* Make about-book layout fully responsive */
.about-book{
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
}

.about-book h2{
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 600;
}

/* desktop: image + text side-by-side */
.about-book-content{
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

/* image column */
.about-book-content .book-image{
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ensure images scale nicely */
.about-book-content .book-image img{
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
}

/* text column */
.about-book-content .book-text{
    flex: 1 1 60%;
    width: 100%;
    box-sizing: border-box;
}

/* tighten typography for the block */
.book-text h3{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}


/* CTA buttons */
.book-text .maincta,
.book-text .subcta{
    display: inline-block;
    margin-top: 20px;
    margin-right: 12px;
    padding: 10px 25px;
    background-color: #c9a84c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    z-index: 2;
    border: 1px solid #c9a84c;
}

/* Tablet: stack and center, increase touch targets */
@media (max-width: 768px) {
    .about-book{
        width: 90%;
        padding: 30px 0;
    }
    .about-book-content{
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .about-book-content .book-image{
        flex: 0 0 auto;
        max-width: 60%;
        width: 60%;
    }
    .about-book-content .book-image img{
        max-height: 300px;
    }
    .about-book-content .book-text{
        width: 100%;
    }
    .book-text h3{ font-size: 22px; }
    .book-text .maincta,
    .book-text .subcta {
        width: auto;
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* Phone: single column, full-width CTAs */
@media (max-width: 480px) {
    .about-book{
        width: calc(100% - 30px);
        padding: 20px 15px;
    }
    .about-book-content .book-image{
        max-width: 90%;
        width: 90%;
    }
    .about-book-content .book-image img{
        max-height: 260px;
    }
    .book-text h3{ font-size: 20px; }
    .book-text .maincta,
    .book-text .subcta{
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin-right: 0;
        padding: 12px 16px;
    }
}

.getcopybanner{
    width: 100%;
    background-color: #000000;
    color: #ffffff;
}

.getcopybanner .content{
    display: flex;
    padding: 50px;
    gap: 5%;
}

.getcopybanner .content .text{
    width: 50%;
}

.getcopybanner .content .image img{
    max-height: 400px;
}

.getcopybanner .content span{
    display: inline-block;
    font-size: 18px;
    font-weight: 100;
    opacity: 60%;
}

.stars{
    margin-bottom: 10px;
}

.getcopybanner .content h4{
    font-size: 24px;
}


@media (max-width: 768px) {
    .getcopybanner .content{
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
        padding: 20px 0;
    }
    .getcopybanner .content .text{
        width: 90%;
    }
    .getcopybanner .content .image img{
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .getcopybanner .content .image img{
        max-height: 200px;
    }
}

.video-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 675"><rect fill="%23222" width="1200" height="675"/></svg>');
    background-size: cover;
    background-position: center;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player.hidden {
    display: none;
}

.video-thumbnail.hidden {
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button.hidden {
    display: none;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ff6b3d;
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.6);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 4px;
}

.info-banner {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.info-banner h2 {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.info-banner p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}





/* Tablet breakpoint - 748px */
@media (max-width: 748px) {
    .video-section {
        margin: 40px auto;
        padding: 0 16px;
    }

    .info-banner {
        left: 50%;
        top: auto;
        bottom: 24px;
        transform: translateX(-50%);
        max-width: 90%;
        padding: 24px;
    }

    .info-banner h2 {
        font-size: 24px;
    }

    .info-banner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button::after {
        border-left: 20px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

/* Mobile breakpoint - 480px */
@media (max-width: 480px) {
    .video-section {
        margin: 20px auto;
        padding: 0 12px;
    }

    .video-container {
        border-radius: 12px;
    }

    .info-banner {
        bottom: 16px;
        max-width: 92%;
        padding: 20px;
        border-radius: 12px;
    }

    .info-banner h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .info-banner p {
        font-size: 13px;
        margin-bottom: 16px;
    }



    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::after {
        border-left: 18px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}

.testimonials{
    width: 90%;
    margin: 50px auto;
    text-align: center;
}

.testimonials h2{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}
.testimonial-card{
    padding: 50px 0;
}
.testimonial-card p{
    font-size: 60px;
}

.testimonial-card p span{
    color: #c9a84c;
    font-size: 60px;
}

.testimonial-card span{
    font-size: 18px;
    font-style: italic;
}
/*------------------------------------------Contact Page--------------------------------------------*/
.header_hero{
    padding: 100px 0px;
    text-align: center;
}

.header_hero h1{
    font-size: 52px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 6px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease;
}

.contact-container:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.contact-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-eyebrow::before,
.contact-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.6;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f5f0e8;
  margin-bottom: 0.2em;
}

.contact-heading em {
  font-style: italic;
  color: #e8cc85;
}

.contact-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 1.2rem auto 2.2rem;
}

.contact-container form {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-container .form-group {
  display: flex;
  flex-direction: column;
}

.contact-container label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 7px;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #f5f0e8;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
  color: rgba(245, 240, 232, 0.28);
}

.contact-container input:focus,
.contact-container textarea:focus {
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.contact-container textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}

.contact-container button {
  width: 100%;
  padding: 14px 24px;
  background: #c9a84c;
  color: #0d0c0a;
  border: none;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.18s;
  margin-top: 6px;
}

.contact-container button:hover {
  background: #e8cc85;
  transform: translateY(-1px);
}

.contact-container button:active {
  transform: translateY(0);
}

.contact-note {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.28);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 500px) {
  .contact-container {
    padding: 36px 20px;
  }
}
/*----------------------------------Publish Page Begins Here-------------------------------------*/
.header_hero{
    width: 100%;
    margin: 0 auto;
}

.publish-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 6px;
  width: 60%;
  min-width: 300px;
  margin: 0 auto;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.form-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-eyebrow::before,
.form-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.6;
}

.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f5f0e8;
  margin-bottom: 0.2em;
}

.form-heading em {
  font-style: italic;
  color: #e8cc85;
}

.form-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 1.2rem auto 2.2rem;
}

.publish-container form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  text-align: left;
}

.form-full {
  grid-column: 1 / -1;
}

.publish-container label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 7px;
}

.publish-container input,
.publish-container select,
.publish-container textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #f5f0e8;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}

.publish-container input::placeholder,
.publish-container textarea::placeholder {
  color: rgba(245, 240, 232, 0.28);
}

.publish-container select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.publish-container select option {
  background: #1a1814;
  color: #f5f0e8;
}

.publish-container input:focus,
.publish-container select:focus,
.publish-container textarea:focus {
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.publish-container textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

.publish-container button {
  width: 100%;
  padding: 14px 24px;
  background: #c9a84c;
  color: #0d0c0a;
  border: none;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.18s;
}

.publish-container button:hover {
  background: #e8cc85;
  transform: translateY(-1px);
}

.publish-container button:active {
  transform: translateY(0);
}

.form-note {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.28);
  letter-spacing: 0.05em;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 640px) {
  .publish-container {
    width: 100%;
    padding: 36px 20px;
  }

  .publish-container form {
    grid-template-columns: 1fr;
  }

  .form-full {
    grid-column: 1;
  }
}