* {
    margin: 0%;
    padding: 0%;
}

/* === ABOUT HEADER === */
.about-header {
    width: 100%;
    height: 50vh;
    position: relative;
    background: url("../images/samarjitroy_Herosection_image.jpg") fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Teal overlay */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 14, 0.178);
    /* same teal tone */
    z-index: 1;
}



/* Content Container */
.about-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Text */
.about-content h1 {
    color: #5e1a14;
    font-size: 7rem;
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
}

.about-content p {
    font-family: "Merriweather", serif;
    color: #ab3646;
    font-size: 1.8rem;
}


.book-section {
        position: relative;
    width: auto;
    margin: 0pc 0px;
    padding: 7pc 10%;
    height: auto;
    background: url(../images/samarjitroy_Herosection_image.jpg) fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

.book-section .overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 212, 212, 0.212);
    z-index: 1;
}

.book-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
        position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.book-left {
    position: relative;
}

.book-img-box {
    width: 100%;
}

.book-img-box img {
    width: 100%;
    filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

/* FOLLOW BOX */
.follow-box {
    width: 200px;
    background: #ab3646;
    padding: 25px;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 20pc;
    bottom: -3pc;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.follow-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.follow-icons a {
    color: #fff;
    font-size: 22px;
    margin: 0 10px;
    transition: 0.3s;
}

.follow-icons a:hover {
    opacity: 0.8;
}

/* RIGHT SIDE CONTENT */
.book-right {
    max-width: 700px;
}

.book-right h4 {
    font-size: 20px;
    letter-spacing: 2px;
    color: #ab3646;
    margin-bottom: 6px;
}

.book-right h1 {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    color: #5e1a14;
}

.book-right p {
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 20px;
}


.buy-section {
  background: #ffffff; 
  padding: 60px 20px;
  text-align: center;
  color: #5e1a14;
}

.buy-section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 40px;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

.buy-btn {
  background: #ab3646;
  padding: 15px 28px;
  color: #ffffff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid #5e1a14;
}

.buy-btn:hover {
  background: #6e161f;
  color: #ffffff;
  transform: translateY(-3px);
}
 /* Button */
.cart-btn12 {
    position: relative;
    /* margin: auto; */
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-btn12:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #ab3646;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    z-index: 0;
}

.cart-btn12 span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff; /* Adjusted color for dark theme */
    z-index: 1;
}

.cart-btn12 svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #ffffff; /* Adjusted color for dark theme */
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    z-index: 1;
}

.cart-btn12:hover:before {
    width: 100%;
    background: #ab3646; /* Changed hover color to match */
}

.cart-btn12:hover span, .cart-btn12:hover svg {
    color: #ffffff;
    stroke: #ffffff;
}

.cart-btn12:hover svg {
    transform: translateX(0);
}

.cart-btn12:active {
    transform: scale(0.95);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .buy-section h2 {
    font-size: 16px;
    line-height: 25px;
    }
    .book-section {
        padding: 50px  0px 10pc 10px;
        font-family: "Merriweather", serif;
    }

    .book-img-box {
        width: 280px;
    }

    .book-right {
        padding: 10px;
        text-align: center;
    }

    .book-right h1 {
        font-size: 22px;
    }

    .book-right h4 {
        font-size: 15px;
    }

    .book-right p {
        font-size: 15px;
    }

    .book-wrapper {
        align-items: center;
        flex-direction: column;
    }

    .follow-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: auto;
    }
    .about-content h1 {
        font-size: 5rem;
    }
}

/* RESPONSIVE */
@media  (min-width: 901px) and (max-width: 1025px) {
    .book-section {
        padding: 80px 50px 10pc 50px;
        font-family: "Merriweather", serif;
    }

    .book-img-box {
        width: 280px;
    }

   

    .book-right h1 {
        font-size: 30px;
    }

    .book-right h4 {
        font-size: 15px;
    }

    .book-right p {
        font-size: 20px;
    }

    .book-wrapper {
        flex-wrap: nowrap;

    }

    .follow-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: auto;
    }
    .buy-section h2 {
    font-size: 21px;}
    .buy-section {
    padding: 60px 80px;
    }
}

/* RESPONSIVE */
@media  (min-width: 1026px) and  (max-width: 1440px) {
    .book-section {
          padding: 80px 10px 10pc 10pc;
        font-family: "Merriweather", serif;
    }

 
 

 .follow-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -8pc;
 
       left: 20pc;
    }
    .about-header {
        height: 60vh;
    }

    .about-content h1 {
        font-size: 4rem;
    }

    .about-content p {
        font-size: 0.8rem;
    }
}



/* CSS */
.button-86 {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
 a{
    text-decoration: none;
}

.button-86::after,
.button-86::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #ab3646;
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}