@font-face {
  font-family: Opensans;
  src: url("/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Opensans;
  src: url("/fonts/OpenSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Opensans;
  src: url("/fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Source Serif Pro;
  src: url("/fonts/SourceSerifPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inconsolata Semibold;
  src: url("/fonts/Inconsolata-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Opensans;
  src: url("fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f1eb;
  --white: #ffffff;
  --cream: #eee3d5;
  --text: #221f1d;
  --muted: #7d7d7d;
  --accent: #b86f4d;
  --dark: #1d1513;

  --radius: 22px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);

  --container: 1440px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Opensans, sans-serif;
  /* background: var(--bg); */
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(92%, var(--container));
  margin: auto;
}
.container__full {
  max-width: 100%;
  padding-inline: 10px;
}
section {
  padding: 90px 0;
}
h1,
h2,
h3,
h4 {
  font-family: Source Serif Pro, sans-serif;
  line-height: 1.15;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  font-family: Inconsolata Semibold, sans-serif;
  text-transform: uppercase;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
/* =========================
 NAVBAR
========================= */

header {
  padding: 20px 0;
}
.navbar {
  background: #fff;
  border-radius: 20px;
  padding: 18px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  margin: 10px 10px 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  color: #666;
  font-size: 0.95rem;
}
.logo {
  letter-spacing: 4px;
  font-weight: 700;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  font-size: 0.8rem;
}

/* =========================
 HERO
========================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 80px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}
.hero-card h1 {
  font-size: 62px;
  color: #8e5538;
  margin-bottom: 24px;
}
.hero-card p {
  color: #666;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image img {
  height: 100%;
}

/* =========================
 MARQUEE LOGOS
========================= */
/* .marquee-section {
  padding: 50px 0;
}
.marquee {
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
} */

.marquee-section {
  overflow: hidden;
  padding: 50px 0;
  background-color: #f8ecd9;
}
.marquee {
  display: flex;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.marquee-content {
  display: flex;
}
.marquee-content img {
  margin-right: 50px; /* space between images */
  height: 80px; /* adjust as needed */
  width: auto;
  max-width: unset;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* scroll half since content is duplicated */
  }
}

/* =========================
 FEATURE GRID
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-content {
  padding: 50px 70px;
}
.card h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.card p {
  color: #1e1e1e;
  margin-bottom: 24px;
}
.card img {
  height: 100%;
  min-height: 340px;
}
.cream {
  background: var(--cream);
}

/* =========================
 BOOKS SLIDER
========================= */
.books {
  background: #efe4d7;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 3rem;
  margin-bottom: 12px;
}
.section-title p {
  color: #8a8a8a;
}
.book-slider {
  overflow: hidden;
  position: relative;
}
.book-track {
  display: flex;
  gap: 30px;
  animation: slideBooks 20s linear infinite;
  width: max-content;
}
.book-card {
  width: 320px;
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.book-card img {
  width: 190px;
  margin: auto;
  margin-bottom: 24px;
}
.book-card h3 {
  margin-bottom: 12px;
}
.book-card p {
  color: #777;
  margin-bottom: 20px;
}
@keyframes slideBooks {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
 LIVE STREAMS
========================= */
/* .videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-thumb {
  position: relative;
}
.video-thumb img {
  height: 240px;
}
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.5rem;
}
.video-content {
  padding: 24px;
} */
.live-streams-content {
  padding-top: 70px;
  padding-bottom: 0px;
}

/* =========================
 FILM SECTION
========================= */
.film {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.film-banner {
  position: relative;
  cursor: pointer;
}
/* .film-banner img {
  height: 550px;
} */
.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
}
.film-overlay .play span {
  /* width: 90px;
  height: 90px; */
  font-size: 2rem;
}
.film-content {
  background: #241917;
  color: #fff;
  padding: 50px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* =========================
 ABOUT
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-grid img {
  border-radius: 24px;
  min-height: 450px;
}
.about-card {
  background: #f8eee4;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-card h2 {
  font-size: 52px;
  margin-bottom: 20px;
  max-width: 490px;
}
.about-card h2 {
  font-size: 48px;
  max-width: 450px;
}
.press-content h3 {
  font-size: 36px;
}

/* =========================
 WHAT IS PLANT MEDICINE
(MISSING SECTION 1)
========================= */
.info-box {
  background: #FAFAF9;
  padding: 50px;
  /* border-radius: 24px;
  box-shadow: var(--shadow); */
  margin-top: 40px;
}
.info-box h3 {
  margin-bottom: 18px;
  font-family: Opensans, sans-serif;
}
.info-box p {
  color: #666;
}

/* =========================
 RECENT PRESS
========================= */
.press-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: var(--shadow);
}
.press-card img {
  height: 100%;
}
.press-content {
  padding: 50px;
}
.press-content h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

/* =========================
 PRESS LOGOS
(MISSING SECTION 2)
========================= */
.press-logos {
  padding-top: 60px;
}
.press-logos .marquee-content {
  gap: 90px;
}

/* =========================
 FOOTER
========================= */
.footer-section {
  background-color: #231b1b;
  padding: 0;
}
.footer-content {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 28px;
  display: flex;
}
.footer-logo {
  margin-bottom: 56px;
}
.footer-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.footer-link {
  color: var(--white);
}

/* CUSTOM CSS */
.hero-card > * {
  width: 62%;
  margin-inline: auto;
}
.hero-card p {
  max-width: unset;
  font-size: 17px;
  color: #1e1e1e;
}
.hero-card .btn {
  width: fit-content;
  margin-inline-start: 0;
  background: #0e0e0f;
}
section:has(> div > .hero-grid) {
  padding-block: 20px;
  background-color: #FFF6E8;
}
.feature-grid .card:has(.card-content) {
  display: flex;
  align-items: center;
}
section:has(> div > .feature-grid) {
  background: #ffffff;
}
section:has(> div > .feature-grid) .card:nth-child(2) {
  background: #f6f6f6;
  box-shadow: none;
}
.card h2 {
  font-size: 52px;
}
.card p {
  font-size: 16px;
}
section:has(div > .press-card) .colored_para,
.heading .colored_para,
.live-streams-content .colored_para,
.card .colored_para {
  color: #b36a4c;
  font-size: 17px;
  font-weight: 600;
}
section:has(div > .press-card) .colored_para {
  font-weight: 400;
}
video {
  display: inline-block;
  vertical-align: baseline;
}
.live-stream-card {
  justify-content: center;
  align-items: center;
  max-width: 435px;
}
.live-streams-cards {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
.play-button {
  position: absolute;
  width: unset;
}
.live-stream-img-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
  position: relative;
}
.live-stream-image {
  object-fit: cover;
  border-radius: 20px;
}
.yout_all_btn {
  margin-top: 65px;
  text-align: center;
}
.film-overlay .play {
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.film-overlay .play span {
  left: 4px;
  position: relative;
}
.film-content {
  border-radius: 30px;
  margin-top: 30px;
}
.film-content .colored_para {
  color: #ca4726;
}
.film-content h2 {
  font-size: 42px;
}
.film-content {
  grid-template-columns: 400px 1fr;
}
section:has(div > .press-card) {
  background-color: #fffdf9;
}
.about-card a {
  width: fit-content;
  margin-top: 30px;
}
.about-card p {
  font-size: 16px;
  max-width: 540px;
}
.press-card {
  gap: 50px;
  padding: 50px;
}
.press-content {
  padding: 0px;
}
.press-card img {
  border-radius: 20px;
}
.press-card .blg_btn {
  text-align: right;
}
.press-card .blog__btn {
  padding-inline: 14px;
}
.press-card p {
  color: #929292;
}
.press-content h3 {
  font-size: 42px;
}
.books {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}
.inner {
  width: min(92%, 1400px);
  margin: auto;
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 60px;
  align-items: center;
}
.tabs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tab {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.4s;
}
.tab.active {
  opacity: 1;
}
.tab:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ddd;
  border-radius: 20px;
  transition: 0.4s;
}
.tab.active:before {
  background: #b76b49;
}
.tab h3 {
  line-height: 1;
  margin-bottom: 10px;
}
.tab p {
  color: #666;
  line-height: 1.6;
}
.slider {
  overflow: hidden;
  width: 100%;
  max-height: unset;
}
.track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 82%;
  background: #f7f6f2;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0.45;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-height: unset;
  flex-direction: column;
  justify-content: space-between;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.img {
  width: 100%;
  flex-shrink: 0;
  max-height: 446px;
  height: 100%;
}
.img img {
  width: 100%;
  mix-blend-mode: darken;
  height: 100%;
  object-fit: contain;
}
.content h2 {
  font-size: 64px;
  line-height: 0.95;
  margin-bottom: 20px;
}
.content span {
  font-size: 20px;
  display: block;
  margin-bottom: 22px;
}
.content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 560px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.actions button {
  border: none;
  background: #b76b49;
  color: #fff;
  padding: 16px 30px;
  border-radius: 999px;
  cursor: pointer;
}
.actions a {
  color: #ffffff;
  text-decoration: none;
  width: 100%;
}
.actions .btn__secondary {
  background-color: transparent;
  color: var(--accent);
}
.heading h2 {
  font-size: 52px
}
.slide:last-child {
  flex: 0 0 95%;
}
.footer__marq {
  background-color: #FFFDF9;
  padding-bottom: 100px !important;
}
.brand {
  margin-right: unset;
}
.nav-container::before,
.nav-container::after {
  content: none;
}
.live-stream-heading {
  margin-bottom: 0px;
}
.live-stream-heading,
.live-streams-content > p {
  text-align: center;
}
.live-streams-content .colored_para {
  margin-bottom: 40px;
  font-weight: 400;
}
.live-stream-text {
  font-size: 26px;
  line-height: normal;
  font-weight: 500;
}
div:has(> .navbar) {
  background-color: #FFF6E8;
}

/* =========================
 RESPONSIVE
========================= */
@media(min-width: 1200px) {
  .slide .content h3 {
    font-size: 32px;
  }
}

@media (max-width: 1440px) {
  .img {
    max-height: 339px;
  }
}
@media (max-width: 992px) {
  .hero-grid,
  .feature-grid,
  .about-grid,
  .film-content,
  .press-card {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card {
    padding: 60px;
  }
  .hero-card h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .navbar {
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .hero-card,
  .card-content,
  .about-card,
  .press-content,
  .info-box {
    padding: 36px;
  }
  .hero-card h1 {
    font-size: 2.3rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* CUSTOM RESPONSIVE CSS */
@media (max-width: 1440px) {
  .hero-card > * {
    width: 90%;
  }
  .hero-card h1 {
    font-size: 58px;
  }
  .marquee-section {
    padding: 30px 0;
  }
  .card h2,
  .heading h2 {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .hero-card > * {
    width: 100%;
  }
  .hero-card {
    padding: 80px 60px;
  }
  section {
    padding: 40px 0px;
  }
}
@media (max-width: 992px) {
  .hero-card {
    min-height: unset;
  }
  .live-streams-content {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .live-streams-content {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .live-streams-cards {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .press-card {
    padding: 30px;
  }
  .press-content {
    padding: 0px;
  }
}
@media (max-width: 1100px) {
  .inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  /* .track {
    flex-direction: column;
  } */
  .slide {
    width: 100%;
    min-height: 720px;
    flex-direction: column;
    text-align: center;
  }
  .content h2 {
    font-size: 42px;
  }
  .actions {
    justify-content: center;
  }
  .slide{
    flex:0 0 100%;
    padding: 20px;
    flex-direction:column;
    text-align:center;
  }
  .content h2{
    font-size:38px;
  }
  .actions{
    justify-content:center;
  }
  .track{
    will-change: transform;
    gap: 20px;
  }
  .hero-card {
    padding: 30px;
  }
  .container {
    width: min(100%, var(--container));
  }
  .card-content, 
  .about-card, 
  .press-content, 
  .info-box {
    padding: 30px;
  }
  .track {
    gap: 0;
  }
  .slide:last-child {
    flex: 0 0 100%;
  }
  .film-content {
    padding-inline: 30px;
    gap: 20px;
  }
  .press-card {
    gap: 0px;
  }
  .press-content {
    padding-inline: 0px;
  }
}
@media (max-width: 550px) {
  .actions {
    flex-direction: column;
  }
}