@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap");


:root {
  --primary-color: #1a75ff;
  /* Bright blue */
  --primary-color-dark: #003380;
  /* Dark blue */
  --accent-color: #E03C31;
  /* Bright red */
  --accent-color-dark: #cc0000;
  /* Dark red */
  --salmon: #FA8072;
  /* Salmon */
  --salmon-dark: #E9967A;
  /* Dark Salmon */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
  --gradient-salmon: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
  --gradient-mix: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark), var(--accent-color));
  --text-dark: #1e293b;
  --text-light: #64748b;
  --extra-light: #f0f5ff;
  /* Light blue tint */
  --white: #ffffff;
  --beige: #FAF9F6;
  --max-width: 1200px;
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section__subheader {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  color: var(--text-light);
  letter-spacing: 2px;
}


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

a {
  text-decoration: none;
}


html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

html,
body {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: oswald;
  background-color: var(--beige);
  padding-top: 70px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

nav {
  width: 100%;
  background: rgb(10, 10, 37);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 70px;
  display: flex;
  align-items: center;
}

.nav__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.donate-btn {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background-image: var(--gradient-accent);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(187, 71, 110, 0.3);
  margin-left: 1.5rem;
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(152, 59, 90, 0.4);
  filter: brightness(1.1);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.nav__logo span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.link a {
  padding: 8px 12px;
  color: white;
  font-weight: 300;
  font-family: oswald;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.link a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.link a:hover::after {
  width: 100%;
}

.link a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donate-link {
  margin-left: 2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

header {
  position: relative;
}

header::before {
  display: none;
}

.header__container {
  padding: 8rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.logo__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  background: transparent;
}

.main-logo {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 2rem;
  background: transparent;
  mix-blend-mode: multiply;
}

.logo__container h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0 0;
  text-align: center;
  font-weight: 300;
  color: var(--text-dark);
}

.yoga {
  color: #970909;
}

.seva {
  color: rgb(4, 4, 58);
}

.header__content {
  z-index: 1;
  text-align: center;
}

.header__content h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-family: oswald;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

.header__content h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
}

.img-container {
  width: 100%;
  position: relative;
}

.img-container img {
  width: 100%;
  display: block;
}

#logo {
  position: static;
  z-index: 1001;
  border-radius: 4px;
  padding: 3px;
  cursor: pointer;
}

#logo a {
  display: block;
  cursor: pointer;
}

#logo img {
  width: 45px;
  height: 45px;
  display: block;
  cursor: pointer;
}

.why__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.why__image img {
  border-radius: 12px;
  max-width: 450px;
  margin: auto;
}

.why__content .section__header {
  margin-bottom: 1rem;
  text-align: left;
}

.meaning-content {
  color: black;
  padding: 2rem 0;
}

.meaning-content p {
  margin-bottom: 2rem;
  line-height: 2;
}

.intro-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.sanskrit-breakdown {
  margin: 2rem 0;
  padding-left: 1rem;
}

.sanskrit-breakdown p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.explanation,
.broader-meaning,
.foundation-message {
  margin-top: 2rem;
}

.why__content p {
  margin-bottom: 2rem;
  line-height: 1.5rem;
  color: black;
}

.why__content ul {
  list-style: none;
}

.why__content li {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.hero {
  background-color: var(--extra-light);
}

.hero__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.hero__card span {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  aspect-ratio: 1;
  background-image: var(--gradient-primary);
  border-radius: 100%;
  box-shadow: 0 4px 15px rgba(26, 117, 255, 0.3);
}

.hero__card span img {
  max-width: 40px;
}

.hero__card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero__card p {
  line-height: 1.5rem;
  color: var(--text-light);
}


/* ===== CAROUSEL STYLES ===== */

.carousel__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.carousel__title {
  text-align: center;
  font-size: 2rem;
  font-family: 'Gallery', sans-serif;
  font-weight: 900;
  color: rgb(10, 10, 37);
  margin-bottom: 1rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto 2rem auto;
  background: transparent;
  border-radius: 78px;
  box-shadow: 0 10px 30px rgba(250, 128, 114, 0.2);
  border: none;
}

/* ── Track ── */
.carousel__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* ── Slides ── */
.carousel__slide {
  flex: 0 0 100%;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  scroll-snap-align: start;
  padding: 2rem;
  box-sizing: border-box;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
}

.carousel__slide:hover {
  opacity: 0.9;
}

.carousel__slide img {
  width: 40%;
  max-width: 420px;
  border-radius: 88px;
  object-fit: cover;
}

.slide__text {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slide__text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--black);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.slide__text p {
  color: var(--black);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  opacity: 0.95;
}

/* ── Arrow buttons ── */
.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 2rem;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel__control:hover {
  background: transparent;
  color: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.1);
}

.carousel__prev {
  left: 1rem;
}

.carousel__next {
  right: 1rem;
}

/* ── Dots ── */
.carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(48, 35, 35, 0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.carousel__dot.active {
  background: var(--primary-color);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(26, 117, 255, 0.15);
}

/* Local per-slide dots */
.slide-local-dots {
  margin-top: 1rem;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.slide-local-dots .carousel__dot {
  width: 10px;
  height: 10px;
  background: rgba(26, 117, 255, 0.25);
}

.slide-local-dots .carousel__dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(26, 117, 255, 0.12);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .carousel__slide {
    flex-direction: column;
    text-align: center;
  }

  .carousel__slide img,
  .slide__text {
    width: 100%;
  }
}


/* ===== GALLERY STYLES ===== */

div.gallery {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 14px;
  background-color: rgb(150, 148, 149);
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.gallery-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 80px;
}

.responsive {
  width: 25%;
  padding: 0 6px;
}

.journey {
  text-align: center;
  font-size: 2rem;
  font-family: 'Gallery', sans-serif;
  color: rgb(27, 29, 86);
  margin-top: 0.75rem;
  margin-bottom: 0.8rem;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


/* ===== FOOTER ===== */

.footer {
  background-color: rgb(10, 10, 37);
  padding: 2rem 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  padding: 1rem 0;
}

.footer__logo a {
  font-size: 0.95rem;
  font-weight: 200;
  color: var(--white);
  opacity: 0.9;
  display: block;
  width: 80px;
  text-align: center;
  margin: -0.4rem auto 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__col img.class_fixed {
  width: 80px !important;
  height: auto !important;
  object-fit: cover;
  border-radius: 6px;
}

.footer__col p {
  font-size: 1.25rem;
  color: var(--white);
  text-align: center;
  opacity: 0.9;
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1;
  font-size: 1.5rem;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer__bar {
  font-size: 0.9rem;
  color: var(--white);
  text-align: center;
  padding-top: 2rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* ===== CAROUSEL MODAL STYLES ===== */

.carousel__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem 1rem;
}

.carousel__modal.open {
  opacity: 1;
  visibility: visible;
}

.carousel__modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#modal-slide-image {
  display: none;
}

.modal-slide-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-slide-text h4 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.modal-slide-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.carousel__modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.carousel__modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--accent-color);
}

.carousel__modal-nav {
  position: absolute;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--salmon);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel__modal-nav:hover {
  background: var(--salmon);
  color: var(--white);
  transform: scale(1.1);
}

.carousel__modal-prev {
  left: 50%;
  transform: translateX(-50px);
}

.carousel__modal-next {
  left: 50%;
  transform: translateX(10px);
}


/* ===== CONTACT MODAL STYLES ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  color: var(--text-dark);
  position: relative;
}

.modal h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
}

.modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  min-height: 360px;
}

.modal-image {
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-content {
  padding: 1.75rem;
}

.modal-sub {
  margin: 0 0 0.75rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.modal-label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.modal-label input,
.modal-label textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  background: white;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.modal-label input:focus,
.modal-label textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(26, 117, 255, 0.08);
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: flex-end;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

.btn-primary {
  background-image: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}


/* ===== RESPONSIVE ===== */

@media (width < 900px) {
  .nav__links {
    gap: 1rem;
  }

  header::before {
    left: 0;
  }

  .header__container {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 6rem;
  }

  .header__content h1 {
    font-size: 1.6rem;
  }

  .header__image {
    grid-area: 1/1/2/2;
  }

  .header__content {
    padding: 2rem 1rem;
    text-align: center;
  }

  .why__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .why__content :is(.section__header, p) {
    text-align: center;
  }

  .hero__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .gallery-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }

  .gallery-wrapper::after {
    content: "↓";
    position: static;
  }

  .responsive {
    width: 90%;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image {
    border-radius: 12px 12px 0 0;
    height: 180px;
  }

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

  .modal-content {
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .carousel__modal-content {
    padding: 1.5rem;
    border-radius: 8px;
  }

  #modal-slide-image {
    max-height: 300px;
  }

  .modal-slide-text h4 {
    font-size: 1.5rem;
  }

  .modal-slide-text p {
    font-size: 1rem;
  }

  .carousel__modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .carousel__modal-prev {
    left: 50%;
    transform: translateX(-50px);
  }

  .carousel__modal-next {
    left: 50%;
    transform: translateX(10px);
  }
}

@media (width < 750px) {
  .nav__links {
    gap: 0.5rem;
  }
}

/* ===== MOBILE NAV (hamburger menu) ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgb(10, 10, 37);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 1rem 1.5rem;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
  }

  .nav__links.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links .link {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__links .link a {
    display: block;
    padding: 1rem 0.25rem;
  }

  .nav__links .link .donate-btn {
    margin: 1rem 0;
    width: 100%;
  }

  body {
    padding-top: 70px;
  }
}

@media (width < 600px) {
  .hero__container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .modal {
    padding: 0;
  }
}

/* =========================================================
   MOBILE FIXES - ABOUT US / NAVBAR / FOOTER
========================================================= */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section__container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* ---------- NAVBAR ---------- */
  nav {
    width: 100%;
    max-width: 100%;
  }

  .nav__container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  #logo,
  .hamburger {
    flex-shrink: 0;
  }

  .nav__links {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding: 1rem 1.25rem;
  }

  .nav__links .link,
  .nav__links .link a {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav__links .link .donate-btn {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  /* ---------- ABOUT US ---------- */
  .why__container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1rem;
    margin: 0 auto;
  }

  /* Picture first */
  .why__image {
    order: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .why__image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
    transform: none;
  }

  /* Text second */
  .why__content {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .why__content .section__header {
    position: static;
    left: auto;
    transform: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: 2.2rem;
  }

  .meaning-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .meaning-content p,
  .why__content p {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
    overflow-wrap: break-word;
  }

  .sanskrit-breakdown {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 1.5rem auto;
  }

  .sanskrit-breakdown p {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-left: 0;
  }

  .footer__container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1rem;
    margin: 0 auto;
  }

  .footer__col {
    width: 100%;
    max-width: 500px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__col p {
    width: 100%;
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .footer__socials {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .footer__socials a {
    flex-shrink: 0;
  }

  .footer__bar {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1rem 0;
    text-align: center;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {

  .section__container,
  .why__container,
  .footer__container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .why__content .section__header {
    font-size: 2rem;
  }

  .why__image img {
    width: 100%;
    max-width: 100%;
  }

  .meaning-content p,
  .why__content p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .footer__col p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .why__container {
    display: flex;
    flex-direction: column;
  }

  .why__content {
    display: contents;
  }

  .why__content .section__header {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .why__image {
    order: 2;
    width: 100%;
  }

  .why__content .meaning-content {
    order: 3;
    width: 100%;
    text-align: center;
  }
}