@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Oswald:wght@200..700&display=swap");

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

:root {
  /* Fonts */
  --font-body: "Inter", sans-serif;
  --font-title: "Oswald", sans-serif;

  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #b4afaf;
  --color-orange: #d14904;

  --color-primary: #ffcd0e;
  --color-secondary: #1b4847;

  --color-background: #f9f0d5;
  --color-body: #ffffffa6;

  /* Spacing */
  --section-gap: 100px;

  /* Transition */
  --transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background-color: var(--color-background);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
}

h1 {
  color: var(--color-white);
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

h1 span {
  color: var(--color-primary);
  text-shadow: 2px 2px 0 #ba3904;
}

.headline {
  font-size: 85px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--color-black);
}

.headline .accent {
  color: #ba3904;
  text-shadow: 2px 2px 0 var(--color-primary);
}

.section-title {
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 65px;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 18px;
  flex-wrap: wrap;
}

.section-title span {
  display: inline-block;
  padding: 8px 10px 10px;
  background: var(--color-orange);
  color: var(--color-primary);
  border-radius: 2px;
  transform: rotate(-4deg);
  animation: titleFloat 3s ease-in-out infinite;
  transition: var(--transition);
}

.section-title:hover span {
  animation-play-state: paused;
  transform: rotate(-4deg) scale(1.05);
}

@keyframes titleFloat {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateY(-6px);
  }
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/*==============================
  Global Button
==============================*/

.custom_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 40px;
  background: var(--color-primary);
  color: var(--color-secondary);
  border: none;
  border-radius: 70px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  height: 65px;
  transition: var(--transition);
  cursor: pointer;
}

.custom_btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.custom_btn:hover .btn-icon {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  transition: inherit;
  font-size: 20px;
  line-height: 1;
}

.custom_btn:has(.btn-icon) {
  padding-inline: 10px 25px;
}

/*==============================
  Social Icons
==============================*/

.social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-icons li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons li a i {
  font-size: 15px;
  line-height: 1;
  transition: var(--transition);
}

.social-icons li a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-4px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icons li a:hover i {
  transform: scale(1.15);
}

/* =====================================================
   Header / Responsive Navigation
   ===================================================== */

.site-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: var(--color-black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .navbar {
  padding: 15px 0;
}

.navbar {
  padding: 30px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
  margin-bottom: 0;
  color: var(--color-white);
  font-weight: 400;
}

.nav-close-item {
  display: none;
}

.nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
  background: var(--color-secondary);
  color: var(--color-white);
}

.nav-close:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.nav-social-item {
  display: none;
}

/* Hero Banner start */
.hero-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  padding-block: 200px;
  position: relative;
  max-width: 480px;
}

.hero-content p {
  color: var(--color-gray);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.03em;
  margin-block: 30px 40px;
}

.hero-image {
  margin-right: -400px;
  margin-left: -300px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-image img {
  margin-top: -50px;
}

/* Hero Banner end */

/* Podcast Section start */
.podcast-section {
  padding-block: var(--section-gap);
  overflow: hidden;
}

.podcast-section .section-title {
  justify-content: center;
}

.podcast-slider {
  margin-top: 50px;
}

.podcast-card {
  position: relative;
  border: 5px solid transparent;
  border-radius: 40px;
  overflow: hidden;
}

.podcast-item {
  scale: 0.9;
}

.podcast-item.swiper-slide-active {
  scale: 1;
}

.podcast-item.swiper-slide-active .podcast-card {
  border: 5px solid var(--color-primary);
}

.podcast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 64 / 45;
}

.podcast-play {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: var(--color-primary);
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0;
  transition: var(--transition);
}

.podcast-item.swiper-slide-active .podcast-play {
  opacity: 1;
}

.podcast-play i {
  margin-left: 5px;
}

.podcast-slider .slick-prev,
.podcast-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 50%;
  z-index: 9;
  transition: var(--transition);
  font-size: 22px;
  color: var(--color-secondary);
}

.podcast-slider .slick-prev:hover,
.podcast-slider .slick-next:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.podcast-slider .slick-next {
  right: 60px;
}

.podcast-slider .slick-prev {
  left: 60px;
}

/* Podcast Section end */

/* About Section Start */
.about-section {
  padding-block: var(--section-gap);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-section .container {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 50px;
  box-shadow: 0px 35px 60px 0px rgba(27, 72, 71, 0.35);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section h2 {
  color: var(--color-white);
  margin-bottom: 30px;
}

.about-content {
  max-width: 455px;
  margin-left: auto;
  position: relative;
}

.about-content p {
  font-weight: normal;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}

.about-content .custom_btn {
  margin-top: 10px;
}

.about_shape {
  position: absolute;
  width: 100%;
  max-width: 870px;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
  left: -34%;
  bottom: -34%;
}

/* About Section end */

/* MEDIA Section Start */
.media-section {
  padding-block: 200px var(--section-gap);
  overflow: hidden;
}

.media-slider {
  position: relative;
}

.media-section .media-item {
  width: 100%;
  border-radius: 12px;
  background: rgba(27, 72, 71, 1);
  overflow: hidden;
}

.media-section .media-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.1/1;
  object-fit: cover;
}

.media_con {
  padding: 20px;
}

.outer_wrapper {
  position: relative;
}

.outer_wrapper .swiper-button-prev {
  margin-left: -100px;
  color: var(--color-black);
  height: 30px;
}

.outer_wrapper .swiper-button-next {
  margin-right: -100px;
  color: var(--color-black);
  height: 30px;
}

.media-slider .swiper-button-prev {
  left: -50px;
}

.media-slider .swiper-button-next {
  right: -50px;
}

.media-item a {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.media-section h2 {
  justify-content: center;
  margin-bottom: 50px;
}

/* MEDIA Section end */

/* store_section */
.store-item a,
.store-item-img {
  overflow: hidden;
}

.cart_btn:hover,
.store-item {
  background-color: var(--color-white);
}

.store-item {
  transition: 0.4s;
  height: auto;
  transform: translateY(0) !important;
  border-radius: 20px;
}

.store-section {
  padding-block: var(--section-gap);
  overflow: hidden;
}

.store_slider_wrap {
  position: relative;
}

.store-section .section-title {
  text-align: center;
  justify-content: center;
}

.store-slider {
  margin-top: 60px;
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 120px;
}

.store-item.swiper-slide-active {
  transform: translateY(60px) !important;
}

.store-item a {
  display: block;
  border-radius: 20px;
}

.store-item a .store-item-img img {
  height: 380px;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}

.store-item a:hover .store-item-img img {
  transform: scale(1.05);
}

.store-item-cnct {
  padding: 25px 20px 30px;
}

.store-item-cnct h5 {
  font-size: 25px;
  line-height: 1.2;
  color: var(--color-black);
  font-weight: 600;
  font-family: var(--font-title);
  margin-bottom: 12px;
}

.store-item-cnct p {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.cart_btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  text-align: center;
  position: absolute;
  right: 20px;
  bottom: -30px;
  transition: var(--transition);
}

.cart_btn img {
  width: auto;
  margin-inline: auto;
}

.cart_btn:hover {
  border-color: var(--color-secondary);
  transform: rotate(10deg);
}

.swiper_nav {
  font-size: 40px;
  line-height: 1;
  color: var(--color-black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}

.swiper_nav.swiper_button_next {
  left: unset;
  right: -40px;
}

/* store_section */

/* Explore Books Section Start */
.books-section {
  position: relative;
  overflow: hidden;
  background: url("../images/explore-book-bg.png") no-repeat center;
  background-size: cover;
  padding: var(--section-gap) 0;
}

.content-col {
  position: relative;
  max-width: 847px;
  margin-left: auto;
}

.heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.heading h2 {
  color: var(--color-white);
}

.heading .badge {
  display: inline-block;
  background: linear-gradient(180deg, #f5a623 0%, #d9480f 100%);
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  padding: 4px 20px;
  transform: skewX(-8deg);
  letter-spacing: 1px;
}

.heading .badge span {
  display: inline-block;
  transform: skewX(8deg);
}

.book-stack {
  position: relative;
  padding-left: 138px;
  margin-bottom: 40px;
  display: flex;
}

.book {
  position: relative;
  overflow: hidden;
  width: 279px;
  max-width: 279px;
  flex: 0 0 auto;
}

.book img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book-1 {
  left: 0;
  top: 0;
  z-index: 1;
  /* max-width: 306px;
  width: 306px; */
}

.book-2 {
  z-index: 2;
  color: #fff;
  left: -108px;
  top: 129px;
}

.book-3 {
  left: -169px;
  top: 93px;
  z-index: 1;
}

.shop-btn-col {
  margin-top: 163px;
  text-align: center;
}

.shop-btn-col .custom_btn .btn-icon img {
  max-width: 21px;
}

.shop-btn-col .custom_btn {
  margin-left: 100px;
}

.shop-btn-col .custom_btn .btn-icon {
  border: 1px solid transparent;
  transition: var(--transition);
}

.shop-btn-col .custom_btn:hover .btn-icon {
  background-color: transparent;
  border: 1px solid var(--color-primary);
}

.shop-btn-col .custom_btn:hover .btn-icon img {
  filter: brightness(0) invert(1);
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffc518;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 28px 12px 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.shop-btn:hover {
  background: #ffd45c;
}

.shop-btn .icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-btn svg {
  width: 12px;
  height: 12px;
  fill: #ffc518;
}

/* Explore Books Section End */

/* Partnarship Section Start */
.partner-section {
  position: relative;
  overflow: hidden;
  background: url("../images/partner-bg-img.png") no-repeat center;
  background-size: cover;
  padding: var(--section-gap);
}

.partner-section .innr-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.photo-col {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50%;
}

.partner-section .innr-wraper .text-col {
  width: 50%;
  max-width: 472px;
  margin-left: auto;
}

.photo-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0px 35px 60px 0px rgba(27, 72, 71, 0.35);
  background: rgba(217, 217, 217, 1);
}

.photo-card img {
  width: 100%;
  height: 100%;
}

.partner-section h2 {
  margin-bottom: 35px;
  color: var(--color-white);
  max-width: 315px;
  /* text-align: right; */
  justify-content: end;
}

.partner-section h2 span {
  margin-right: 41px;
}

.partner-section p {
  color: #e5e5e5;
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 22px;
  padding-left: 40px;
}

.partner-section .custom_btn {
  margin-left: 40px;
  margin-top: 8px;
}

/* Partnarship Section End */

/* Subscribe Section Start */
.subscribe-section {
  position: relative;
  overflow: hidden;
  background-color: #f3e2c7;
  padding: var(--section-gap) 0;
}

/* yellow circle peeking bottom right */
.subscribe-section::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 600px;
  height: 600px;
  background: #ffcd0e;
  border-radius: 50%;
  z-index: 0;
}

.subscribe-section .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-col {
  position: relative;
  z-index: 2;
  width: calc(50% - 20px);
}
.signup-form {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 50px;
  min-width: 680px;
  position: relative;
  z-index: 2;
  border-radius: 150px;
  box-shadow: 0px 15px 35px 0px rgba(27, 72, 71, 0.35);
  background: rgba(27, 72, 71, 1);
  transition: var(--transition);
  border: 1px solid transparent;
  margin-top: 20px;
}
.signup-form:has(input:focus){
  border:  1px solid var(--color-primary);
}

.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  padding-right: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
  height: 100%;
    padding-block: 10px;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.signup-form button {
  border-radius: 100px;
  background: rgba(255, 205, 14, 1);
  border: 1px solid transparent;
  padding: 27px 50px;
  color: #1b4847;
  cursor: pointer;
  transition: var(--transition);

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.signup-form button:hover {
  background: #ffd45c;
}

.disclaimer {
  margin-top: 20px;
  color: rgb(0 0 0 / 50%);
  max-width: 521px;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.04em;
}

.disclaimer a {
  color: #1b4847;
  font-weight: 500;
  text-decoration: none;
}

.disclaimer a:hover {
  text-decoration: underline;
}

.art-col {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: calc(50% - 20px);
}

.art-frame {
  max-width: 550px;
  border: 5px solid #ffcd0e;
  border-radius: 50px;
  background: #d9d9d9;
  overflow: hidden;
  margin-left: 60px;
  margin-right: -60px;
}

.art-frame img {
  width: 100%;
  height: 100%;
}

/* Subscribe Section End */

/* Footer Section Start */
footer {
  position: relative;
  background: url("../images/footerbg-img.png") no-repeat center;
  background-size: cover;
  padding: var(--section-gap) 0 40px;
  color: #ffffff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

footer .logo {
  max-width: 300px;
}

.follow-block {
  text-align: right;
}

.follow-label {
  margin-bottom: 10px;
  text-align: left;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.04em;
}

.ftr-scl-icon {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.ftr-scl-icon li {
  width: 40px;
  height: 40px;
  background: #ffc518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ftr-scl-icon li a {
  width: 100%;
  height: 100%;
}

.ftr-scl-icon svg {
  width: 14px;
  height: 14px;
  fill: #0c1626;
}

.ftr-scl-icon li a:hover {
  transform: translateY(0px) rotate(8deg);
}

nav.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

nav.footer-links a {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

nav.footer-links a:hover {
  color: #ffcd0e;
}

nav.footer-links a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  right: -64px;
}

nav.footer-links a:last-child::after {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04px;
  line-height: 22px;
  color: rgb(255 255 255 / 65%);
  padding-top: 40px;
}

.footer-bottom .brand {
  color: #ffcd0e;
}

.footer-bottom .legal a {
  color: rgb(255 255 255 / 65%);
  text-decoration: none;
  margin-left: 6px;
}

.footer-bottom .legal a:hover {
  text-decoration: underline;
}

/* Footer Section End */

/* About Section Start */
/* About Section end */
