/*
Theme Name: My Custom Theme
Theme URI: https://example.com
Author: Your Name
Description: A custom WordPress theme built from scratch.
Version: 1.0
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: mycustomtheme
*/
:root {
  /* Brand */
  --clr-bg: #ede3d7;
  --clr-brown: #7c6c5f;
  --clr-dark: #222625;
  --clr-surface: #f5edea;
  /* Gold */
  --clr-gold-100: #faf2cc;
  --clr-gold-200: #d8b774;
  --clr-gold-300: #d5b471;
  --gradient-gold: linear-gradient(
      90deg,
      var(--clr-gold-100) 0%,
      var(--clr-gold-200) 50.96%,
      var(--clr-gold-300) 100%
  );
}

:root {
  /* Font Families */
  --ff-primary: "Nunito Sans", sans-serif;
  --ff-secondary: "Cormorant Garamond", serif;
  /* Font Weights */
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  /* Font Sizes */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-64: 4rem;
  /* Line Heights */
  --lh-100: 1;
  --lh-120: 1.2;
  --lh-140: 1.4;
  --lh-160: 1.6;
}

:root {
  --container: 1440px;
  --container-padding: 64px;
  --header-height: 96px;
}

:root {
  --ease-standard: cubic-bezier(.22,.61,.36,1);
  --duration-fast: .2s;
  --duration-normal: .35s;
}

/* ==========================================
   Reset
========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
   Document
========================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-primary);
  font-weight: var(--fw-400);
  font-size: var(--fs-16);
  line-height: var(--lh-160);
  background-color: var(--clr-bg);
  color: var(--clr-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================
   Media
========================================== */
img,
picture {
  display: block;
  max-width: 100%;
}

/* ==========================================
   Elements
========================================== */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.c-container {
  width: min(var(--container), 100% - 64px);
  margin-inline: auto;
}

.header {
  position: relative;
  height: var(--header-height);
  background-color: var(--clr-bg);
  display: flex;
  align-items: center;
}

.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__left a,
.header__right a {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 20px;
}

.header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__logo img {
  display: block;
  width: 220px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.header__hamburger span {
  width: 100%;
  height: 1px;
  background: #222;
}

.header__right {
  gap: 2rem;
}

.header__right a {
  color: #262626;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.header__right a:hover {
  opacity: 0.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 10px 40px;
  background: linear-gradient(90deg, #faf2cc 0%, #d8b774 50.96%, #d5b471 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #7a6758;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.button:hover {
  filter: brightness(1.05);
}

.footer {
  position: relative;
  overflow: hidden;
  font-weight: var(--ff-secondary);
  margin-top: 200px;
}
.footer .container {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-block: 120px;
  color: white;
}

.footer__image {
  position: relative;
  z-index: -1;
}

/* =======================
Navigation
======================= */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 7rem;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu li + li {
  margin-top: 2rem;
}

.footer__menu a {
  font-size: var(--fs-24);
  font-weight: var(--fw-600);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__menu a:hover {
  opacity: 0.75;
}

/* =======================
Newsletter
======================= */
.footer__newsletter {
  max-width: 700px;
}

.footer__title {
  margin-bottom: 1.5rem;
  font-size: var(--fs-24);
  line-height: 1.3;
  font-weight: var(--fw-400);
}

.footer__newsletter p {
  margin-bottom: 2.5rem;
  font-size: var(--fs-16);
  line-height: 1.7;
  opacity: 0.9;
}

/* =======================
Form
======================= */
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__form input {
  width: 100%;
  height: 82px;
  padding-inline: 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-size: var(--fs-22);
  outline: none;
}

.footer__form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.footer__form button {
  height: 72px;
  border: none;
  background: #efe5d7;
  color: #222;
  font-size: var(--fs-22);
  cursor: pointer;
  transition: 0.3s;
}

.footer__form button:hover {
  background: #fff;
}

/* =======================
Bottom
======================= */
.footer__bottom {
  margin-top: 11rem;
  text-align: center;
}

.footer__logo {
  width: 82px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.footer__tagline {
  margin-bottom: 2rem;
  font-size: var(--fs-22);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.footer__copyright {
  font-size: var(--fs-14);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* =======================
Responsive
======================= */
@media (max-width: 991px) {
  .footer {
    padding-top: 5rem;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__title {
    font-size: var(--fs-32);
  }
  .footer__bottom {
    margin-top: 6rem;
  }
}
section {
  height: 100vh;
  width: 100%;
}

/* ==========================================================
   Coming Soon Banner
========================================================== */
.coming-soon-banner img {
  -o-object-fit: cover;
     object-fit: cover;
}
.coming-soon-banner .content-section__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.coming-soon-banner .content-section__inner img {
  width: 58px;
  height: 76px;
  margin: auto;
  margin-bottom: 33px;
}
.coming-soon-banner .content-section__inner .content-section__eyebrow {
  color: inherit;
}
.coming-soon-banner .content-section__inner .content-section__title {
  color: inherit;
}
.coming-soon-banner .content-section__inner .content-section__content p {
  color: inherit;
  max-width: 343px;
  margin: auto;
}

/* ==========================================================
   Philosophy Section
========================================================== */
.philosophy {
  position: relative;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
  /* Left Panel */
}
.philosophy__left {
  width: 50%;
  background: #e8decf;
  position: relative;
}
.philosophy {
  /* Right Panel */
}
.philosophy__right {
  width: 50%;
  background: #f6f1ef;
  position: relative;
  padding: 90px 70px;
}
.philosophy__right .content-section__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.philosophy__right .content-section__content {
  margin: unset;
  margin-left: auto;
}
.philosophy {
  /* Decorative Artwork */
}
.philosophy__art {
  position: absolute;
  top: 60px;
  left: 0;
  width: min(68vw, 880px);
  max-width: none;
  z-index: 5;
  pointer-events: none;
}

/* ==========================================================
   Aagam Principles Section
========================================================== */
.aagam-principles {
  display: flex;
  min-height: 100vh;
}

/* Left Content */
.principles-content {
  width: 50%;
  background: #7C6C5F;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
}

/* Right Image */
.principles-image {
  width: 50%;
}

.principles-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Heading */
.principles-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 8rem;
}

.principles-heading .line {
  width: 350px;
  height: 3px;
  background: #fff;
  margin-bottom: 42px;
  border-radius: 50%;
}

.principles-heading h2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* Content */
.principles-text {
  max-width: 420px;
}

.principles-text p {
  margin-bottom: 10px;
  line-height: 1.35;
  font-size: 16px;
}

.principles-text strong {
  font-weight: 700;
}

/* Bottom Divider */
.bottom-line {
  margin-top: 50px;
  width: 350px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}

/* ==========================================================
   Coming Soon Map Section
========================================================== */
.coming-soon-map .c-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding-block: 100px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.coming-soon-map .c-container * {
  color: white;
}
.coming-soon-map img {
  height: 100%;
}

/* ==========================================================
   Coming Soon Text
========================================================== */
.coming-soonline-text {
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
}
.coming-soonline-text img {
  max-width: 178px;
}
.coming-soonline-text .coming-text {
  font-size: var(--fs-40);
  font-family: var(--ff-secondary);
  letter-spacing: 0px;
}

/* ==========================================================
   Landing Page Footer
========================================================== */
.landing-page-footer img {
  height: 100%;
}

.landing-page-footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 214px;
  left: 0;
  right: 0;
  margin: auto;
}

.landing-page-footer-content p {
  margin: 0;
  font-family: var(--ff-secondary);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  background: linear-gradient(180deg, #faf2cc 0%, #d8b774 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -1px;
}

.landing-page-footer-content span {
  display: inline-block;
}

/* ==========================================================
   Responsive
========================================================== */
@media (max-width: 1024px) {
  .landing-page-footer-content p {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
}
@media (max-width: 768px) {
  .landing-page-footer-content p {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }
}
@media (max-width: 480px) {
  .landing-page-footer-content p {
    font-size: 2rem;
  }
}
/* ==========================================================================
   SWIPER / SLIDER STYLES
   ========================================================================== */
.swiper {
  width: 100%;
  height: 100vh;
}

/* About Us Slider */
#aboutus_slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.75, 0, 0.25, 1);
}

.swiper-slide {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   MENU
========================================== */
.menu {
  position: fixed;
  inset: 0;
  height: calc(100vh - 96px);
  top: 96px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-standard), visibility var(--duration-normal) var(--ease-standard);
}

/* Open State */
.menu.is-active {
  visibility: visible;
  opacity: 1;
}

/* ==========================================
   OVERLAY
========================================== */
.menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

/* ==========================================
   PANEL
========================================== */
.menu__panel {
  position: relative;
  width: min(720px, 72vw);
  background: var(--clr-bg);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2;
  overflow-y: auto;
  height: 100%;
}

.menu.is-active .menu__panel {
  transform: translateX(0);
}

/* ==========================================
   NAVIGATION
========================================== */
.menu__nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 80px;
  justify-content: space-evenly;
  box-shadow: 0px 0 2px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   LINKS
========================================== */
.menu__nav a {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--ff-primary);
  font-weight: var(--fw-400);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--clr-dark);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-standard), transform var(--duration-normal) var(--ease-standard);
}

/* Underline */
.menu__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--clr-dark);
  transition: width var(--duration-normal) var(--ease-standard);
}

.menu__nav a:hover {
  transform: translateX(8px);
}

.menu__nav a:hover::after {
  width: 100%;
}

/* ==========================================
   SCROLLBAR
========================================== */
.menu__panel::-webkit-scrollbar {
  width: 6px;
}

.menu__panel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

/* ==========================================
   CONTENT SECTION
========================================== */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

.content-section {
  padding-block: 8rem;
}

.content-section__inner {
  text-align: center;
}

.content-section__eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-family: var(--ff-primary);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  line-height: var(--lh-120);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-brown);
}

.content-section__title {
  margin-bottom: 2.5rem;
  font-family: var(--ff-secondary);
  font-size: var(--fs-40);
  font-weight: var(--fw-400);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--clr-dark);
}

.content-section__content {
  display: flex;
  flex-direction: column;
  max-width: 570px;
  margin: auto;
}

.content-section__content p {
  font-family: var(--ff-primary);
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  line-height: 1.8;
  color: var(--clr-dark);
}

.split-section {
  padding-block: 8rem;
}
.split-section .c-container {
  margin-left: 0;
}

.split-section__wrapper {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.split-section__media,
.split-section__body {
  flex: 1;
}

.split-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.split-section__body {
  max-width: 570px;
  margin-inline: auto;
}

.split-section__link {
  display: inline-flex;
  margin-top: 3rem;
  font-family: var(--ff-primary);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  line-height: var(--lh-120);
  color: var(--clr-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
  transition: opacity var(--duration-normal);
}

.split-section__link:hover {
  opacity: 0.7;
}

.split-section--reverse .split-section__wrapper {
  flex-direction: row-reverse;
}

/* Target .c-container that is a child of .split-section__wrapper */
.split-section--reverse .c-container {
  margin-left: auto;
  margin-right: 0;
}

.chapter {
  position: relative;
  padding-bottom: 8rem;
  background: var(--clr-bg);
}

.chapter__illustration {
  position: relative;
  width: 250px;
  height: 312px;
  margin-inline: auto;
  transform: translateY(5rem);
  z-index: 2;
}

.chapter__illustration img {
  display: block;
  width: 100%;
  height: 100%;
}

.chapter__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.chapter__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chapter__content .content-section__title {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 500;
}
.chapter__content hr {
  max-width: 786px;
  border-top: 2px solid;
}

.chapter__link {
  display: inline-flex;
  font-family: var(--ff-primary);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--clr-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: opacity var(--duration-normal);
}

.chapter__link:hover {
  opacity: 0.7;
}

.journal__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journal__media img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}

.journal__content {
  max-width: 640px;
}

.journal__content .content-section__title {
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 500;
  font-size: var(--fs-48);
}

.journal__content .content-section__content {
  max-width: 500px;
}
.journal__content .content-section__content p {
  margin-bottom: 0;
}

.journal__link {
  display: inline-flex;
  margin-top: 1.5rem;
  font-family: var(--ff-primary);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  line-height: var(--lh-120);
  color: var(--clr-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: opacity var(--duration-normal);
}

.journal__link:hover {
  opacity: 0.7;
}

.journal-grid {
  padding-block: 2rem;
}
@media (min-width: 992px) {
  .journal-grid {
    margin-bottom: 200px;
  }
}

.journal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.journal-card__media {
  margin: 0;
  overflow: hidden;
}

.journal-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  -o-object-fit: cover;
     object-fit: cover;
}

.journal-card__body {
  padding-top: 2rem;
}

.journal-card__body .content-section__content {
  margin-bottom: 1.5rem;
}
.journal-card__body .content-section__content p {
  font-family: var(--ff-secondary);
  font-style: italic;
  font-size: var(--fs-20);
  line-height: 25px;
  margin-bottom: 0;
}

.journal-card__link,
.section-button {
  display: inline-block;
  position: relative;
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--clr-dark);
  text-decoration: none;
}

.journal-card__link::after,
.section-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.gallery-slider {
  overflow: hidden;
}
@media (min-width: 992px) {
  .gallery-slider {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.gallery-slider .swiper {
  width: calc(100% + 340px);
  margin-left: -170px;
  margin-right: -170px;
  overflow: visible;
}

.gallery-slider .swiper-wrapper {
  align-items: center;
}

.gallery-slider .swiper-slide {
  width: auto;
}

.gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */