/* ===============================
   Sacred Leaves Cards
================================= */
.card-img-top {
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.card {
  transition: .3s;
  background-color: #FFFFFF; /* subtle contrast */
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,.15) !important;
}

/* Make all side headings dark green */
.card-body strong {
  color: darkgreen;
}

/* Make the leaf name/title dark green */
.card-title {
  color: darkgreen;
}

/* ===============================
   Splash Screen
================================= */
#splash {
  background: #355E3B; /* Vaibhavam Primary Green */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo animation */
.logo {
  opacity: 0;
  transform: scale(0.5);
  animation: logoIntro 2s ease forwards;
  width: 40px;   /* small circular logo */
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes logoIntro {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Optional fade-out effect */
.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ===============================
   Brand Palette
================================= */
:root {
  --primary-green: #355E3B;
  --gold: #D4AF37;
  --cream: #FFF8EE;
  --card-bg: #FFFFFF;
  --maroon: #8B1E1E;
}

/* ===============================
   Navbar
================================= */
.navbar-nav {
  flex-wrap: nowrap;          /* keep items on one line */
}

.nav-link {
  white-space: nowrap;        /* prevent text wrapping */
  color: var(--primary-green) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin: 0 14px;             /* spacing between items */
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--primary-green);
  font-weight: 500;           /* medium/semi-bold */
  font-size: 28px;            /* slightly smaller */
  margin-left: 8px;
  font-family: 'Cinzel', serif; /* premium font */
  letter-spacing: 1px;
}

/* ===============================
   Hero Section
================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Poppins:wght@400;600&display=swap');

.hero-heading {
  font-family: 'Cinzel', serif;
  color: #355E3B;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;   /* reduced ONLY heading */
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  color: #D4AF37;
  font-weight: 600;
  font-size: 24px;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  color: #355E3B;
  font-size: 18px;
  max-width: 550px;
  line-height: 1.8;
}

.hero-img {
  max-width: 95%;
  margin-left: 20px;   /* breathing room between text and image */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-heading { font-size: 26px; }
}

@media (max-width: 768px) {
  .hero-heading { font-size: 20px; text-align: center; }
  .hero-img { margin-left: 0; } /* reset margin on mobile */
}


/* ===============================
   Why Choose Section
================================= */
#about h2 {
  color: var(--maroon);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

/* ===============================
   Global Backgrounds
================================= */
body {
  background-color: var(--cream); /* warm beige */
}

section {
  background-color: var(--cream);
}

footer {
  background-color: var(--primary-green);
  color: var(--cream);
  padding: 20px 0;
  text-align: center;
}
.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}
.logo {
  max-width: 100%;   /* Prevents overflow */
  height: auto;      /* Keeps aspect ratio */
  display: block;    /* Removes inline spacing */
  margin: 0 auto;    /* Centers the logo */
}
@media (max-width: 576px) {
  .logo {
    max-width: 150px; /* Shrinks logo on phones */
  }
}

