:root {
    --terracotta: #D16A4C;
    --ochre: #D4A373;
    --deep-green: #3E5C4E;
    --soft-cream: #FEFAE0;
    --stone: #B7B7A4;
    --linen: #FAF3E0;
    --shadow: rgba(67, 40, 24, 0.1);

    --cream: #F5F1E9;
    --dusty-rose: #C98F8F;
    --charcoal: #2F2F2F;
    --warm-white: #FDFBF7;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.87;
  font-size: .98rem;
  font-weight: 300;
}

h1, h2, h3, h4, h5, .navbar-brand, .display-1, .display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: inherit;
}

li{
  font-size: .98rem!important;
}
/* "sans": ["Inter", "sans-serif"], */
/* "serif-primary": ["Cormorant Garamond", "serif"], */
/* "serif-accent": ["Fraunces", "serif"] */

.text-deep-green{
  color: var(--deep-green);
}

.handwritten {
    /* font-family: 'Dancing Script', cursive; */
    font-family: 'Fraunces', serif;
}

.italic {
	font-style: italic;
  color: #d16b4d;
}

/* Natural texture backgrounds */
.linen-bg {
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
  background-color: var(--linen);
}

.soft-cream-bg{
  background-color: var(--soft-cream);
}

.cream-bg{
  background-color: var(--cream);
}

.deep-green-bg{
  background-color: var(--deep-green);
}
.white-bg{
   background-color: #fff;
}

.terra-bg{
  background-color: var(--terracotta)!important;
}
.ochre-bg{
  background-color: var(--ochre)!important;
  color: var(--deep-green)!important;
}
.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 163, 115, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 108, 56, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


/* Organic shapes */
.organic-shape {
    border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
}

.curved-edge-top {
    border-top-left-radius: 40% 30px;
    border-top-right-radius: 40% 30px;
}

.curved-edge-bottom {
    border-bottom-left-radius: 40% 30px;
    border-bottom-right-radius: 40% 30px;
}


/* Navigation */
.navbar {
    background-color: rgba(245, 241, 233, 1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    padding: 0.1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px var(--shadow);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--charcoal) !important;
}

.nav-link {
  color: var(--charcoal) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  text-transform: uppercase;
  font-size: .89rem;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--terracotta);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 100%;
}
.home-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/banner/1.jpg');
}

.about-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/banner/about.jpg');
}

.about-bg-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/about.jpg');
}

.rooms-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/rooms.jpg');
}
.dining-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/dining-bg.jpg');
}

.experience-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/experiences.jpg');
}
.library-hero{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/library.jpg');
}
.contact-hero
{
  background: linear-gradient(rgba(67, 40, 24, 0.3), rgba(67, 40, 24, 0.1)), url('../images/contact.jpg');
}


.hero {
  width: 100%;
  height: 86vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size:auto;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-content {
    color: var(--cream);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.hero-subtitle:before, .hero-subtitle:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--ochre);
}

.hero-subtitle:before {
    left: -50px;
}

.hero-subtitle:after {
    right: -50px;
}
.section {
  padding: 8rem 0;
  position: relative;
}
/* Section Styling */
.section-spacing {
    padding: 6rem 0;
}
.section-title {
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.section-title  h2{
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.section-title  h3{
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}

.section-title span{
  font-size: 14px;
  color: var(--ochre);
}
.section-title p{
  font-size: 16px;
}


.promise-section
{
  background-image: url("../images/bgs/1.jpg") !important;
	background-size: cover;
	background-repeat: no-repeat !important;
	background-position:bottom;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.promise-container{
    position: relative;
    margin-top: 200px;
    color: var(--cream);
}
.promise-container .row{
  /* margin-top: 200px; */
  position: absolute;
  top: -150px;
}
.promise-container li{
  color: var(--cream);
}
.expanse
{
  min-height: 650px;
}


.village-section
{
  background-image: url("../images/our-village.jpg") !important;
	background-size: cover;
	background-repeat: no-repeat !important;
	background-position:bottom;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.welcome-text {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.15rem;
	line-height: 2;
	color: var(--charcoal);
}

.row.__align-items-center {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ensures all children stretch to equal height */
}


.room-card{
  padding: 75px 20%;
  margin: 0 20px;
  color:  var(--warm-white);
  display: block!important;
}
.room-card {
  text-align: center;
  border: none;
  border-radius: 12px;
  /* background-color:#D16A4C; */
  background-color: var(--deep-green);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  min-height: 100%!important;
  box-shadow: 0 20px 40px var(--shadow);
}

.room-card p{
  color: rgb(255 255 255 / 0.8);
}

@media (max-width:1366px) {
  .room-card{
    padding: 40px 15px;
    margin: 0 0;
  }

  .card.h-100 img {
    height: auto; /* allow natural shrink on smaller screens */
  }
}

@media (min-width:1366px) {}

/* .room-card:hover {
  transform: translateY(-10px);

} */

/* Cards with natural aesthetic */
.nature-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--soft-cream);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
}

.nature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.card-img-wrapper {
  overflow: hidden;
  height: 250px;
}

.nature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.nature-card:hover img {
  transform: scale(1.05);
}

.organic-shape {
	border-radius: 40px 10px 40px 10px;
}

/* Maasai pattern accents */
.maasai-border {
  position: relative;
}

.maasai-border:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--ochre);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

.shop-section
{
  padding-top: 200px;
}
.product-card {
    background: white;
    border: none;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--color-stone);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay .btn {
    color: var(--color-terracotta);
    display: inline-block;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--color-terracotta);
    width: 42px;
    height: 42px;
    font-size: 0;
    white-space: nowrap;
    padding: 0;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px #63636333;
}
.product-overlay .btn.btn-kart-add
{
  margin-right: 24px;
}
.product-overlay .btn i{
  color: var(--color-terracotta);
  font-size: 0.9rem;
}

.product-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 0.5rem;
}

.product-title a {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-charcoal);
    font-weight: 500;
}



/* Buttons */

.btn-primary{
  background-color: var(--terracotta);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 400;
  border: none!important;
}
.btn-primary:hover{
  background-color: var(--cream);
  color: var(--charcoal);
}

.btn-nature {
  background-color: var(--deep-green);
  color: var(--ochre);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-nature:hover {
  background-color: var(--terracotta);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-nature:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-nature:focus:after {
  animation: ripple 1s ease-out;
}
.btn-outline-custom {
	border: 1px solid var(--deep-green);
	color: var(--deep-green);
	padding: .68rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	background: transparent;
}

.btn-outline-ochre{
  border: 2px solid var(--ochre)!important;
  color: var(--ochre)!important;
  padding: .68rem 1.2rem;
	border-radius: 50px;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	background: transparent;
}



@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.gallery-card {
  position: relative;
  z-index: 1;
  transition: var(--transition);
  overflow: hidden;
}

.section .image-area  {
	display: block;
	position: relative;
	z-index: 1;
}

.section .image-area::after {
	content: "";
	position: absolute;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.75%, var(--charcoal) 100%);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.section .gallery-content{
  position: absolute;
	z-index: 1;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 228px;
	width: 100%;
}
.gallery-content h3{
  color: #F5F1E9;
  font-size: 20px;
  font-weight: 600;
}

.section.library-section {
	background: var(--deep-green);
	color: var(--cream);
  padding: 10rem 0!important;
}

/* Testimonial */
.testimonial {
  position: relative;
  padding: 3rem;
  background-color: var(--soft-cream);
  border-radius: 12px;
  margin: 2rem 0;
}

.testimonial:before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: var(--ochre);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.library-cards img{
  height:500px;
  object-fit:cover;
}
.library-cards P
{
  line-height: 1.5;
}

.lib-cta
{
  position: relative;
  height: 100%;
}
.lib-cta-body
{
  display: flex;
  position: absolute;
  align-items: center;
  bottom: 50%;
  left: 35%;
  text-align: center;
}
.card-img-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(48, 48, 48, 0.95) 10%, rgba(212, 163, 115, 0.1) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
}

.experience-card
{
  background-color: var(--deep-green);
  height: 100%;
}

.booking-pg {
  background: var(--background-light);
  padding-top: 200px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.room-type-card {
  cursor: pointer;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

/* Hover effect */
.room-type-card:hover {
  border-color: #0d6efd;
  background-color: #f8f9fa;
}

/* The "Selected" state using :has() */
.room-type-card:has(input[type="radio"]:checked) {
  background-color: rgb(209 107 77 / 0.05);
  box-shadow: 0 0 10px rgba(245, 241, 233, 0.2)
  border-color: rgb(209 107 77);
}

/* Optional: Add a checkmark icon or change text color when active */
.room-type-card:has(input[type="radio"]:checked) .fw-bold {
  color:  rgb(209 107 77);
}

/* Base card style */
.meal-plan-option {
    display: block;
    cursor: pointer;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    height: 100%;
}

/* Hover effect */
.meal-plan-option:hover {
    border-color: rgb(209 107 77);
    background-color: #f8f9fa;
}

/* Selected State - Using :has() */
.meal-plan-option:has(input[type="radio"]:checked) {
  background-color: rgb(209 107 77 / 0.05);
  box-shadow: 0 0 10px rgba(245, 241, 233, 0.2)
  border-color: rgb(209 107 77);
}

/* Change text weight or color when selected */
.meal-plan-option:has(input[type="radio"]:checked) .fw-bold {
    color: rgb(209 107 77);
}

div.form-grid input[type="text"], div.form-grid input[type="password"],
div.form-grid textarea,
div.form-grid select
{
	background: var(--soft-cream);
	border: 1px solid #bcc2e2;
	color: #1b2c50;
	font-size: 14px;
  position: relative;
}

div.form-footer .btn
{

}

.form-control:focus, .form-select:focus {
	border-color: rgb(209 107 77)!important;
	box-shadow: none !important;
}

.help-block
{
  font-size: 11px;
  color: #dc3545;
}

.required.has-error {
  color: #dc3545;
}
.required.has-error .form-control {
	border: 1px solid #dc3545;
  color: #dc3545;
}

.required.has-error  .form-control::placeholder
{
  color: #dc3545;
}


/* Footer */
.footer {
  background-color: #000;
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer h5{
  color: #CBAE6E;
  font-weight: 600;
}
.footer a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer a:hover {
  color: var(--ochre);
}

.footer-divider {
    border-top: 1px solid #CBAE6E;
    margin: 2rem 0;
}

.footer dd{
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 14px;
}
.social a{
  color: #CBAE6E;
}

.footer .btn{
  background-color: var(--ochre)!important;
  color: var(--deep-green)!important;
}

.footer .credit, .footer .credit a{
  color: #3E5C4E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-spacing {
        padding: 4rem 0;
    }

    .hero-subtitle:before, .hero-subtitle:after {
        width: 20px;
    }

    .hero-subtitle:before {
        left: -30px;
    }

    .hero-subtitle:after {
        right: -30px;
    }
}

/* Animation for fade-in elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sensory experience section */
.sensory-item {
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    background-color: rgba(254, 250, 224, 0.5);
    margin-bottom: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.sensory-item:hover {
    background-color: rgba(212, 163, 115, 0.1);
}

.sensory-icon {
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.linen-texture {
  position: relative;
  background-color: var(--cream);
}

.linen-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="3"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></svg>');
  pointer-events: none;
}

.bg_cover {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.about-section {
	background-image: url("../images/about.jpg") !important;
  padding: 100px 0;
  background-attachment: fixed;
}

.overlay {
	position: relative;
	z-index: 1;
}

.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.about-card
{
  padding: 60px 70px;
  margin: 2rem 0;
  text-align: center;
}
@media (min-width: 1368px) {
  .booking-card {
    padding-left:290px;
  }
}

@media (min-width: 1200px && max-width: 1366px) {
  .booking-card {
    padding-left:120px;
  }
}

.booking-card{

}
.booking-img
{
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-flow: column;
}

.booking-img img{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
