/* Reset and basic style */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff9f0;
}
/* Ensure footer stays at the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.page-wrapper {
  flex: 1;
}
main {
    flex: 1;
}
/* Make Hero full-screen on all devices */
.hero {
    position: relative;
    background: url('../images/hero-banner.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 90%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 12px 30px;
    background: #ffd9a0;
    color: #5c3a00;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
}

.hero-btn:hover {
    background: #ffbe60;
}


/* Loader styles */
/* .loader {
    position: fixed;
    z-index: 9999;
    background-color: #fff9f0;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
} */
/* .loader {
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
} */
.loader img {
    width: 800px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.about-section {
    padding: 60px 20px;
    background-color: #fffdf6;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.about-container.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-text h2 {
    font-size: 28px;
    color: #5c3a00;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
/* 
.about-image {
    flex: 1;
    max-width: 400px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    overflow: hidden;
    border: 5px solid #f1d2a7;
    border-radius: 15px;
} */
.about-image {
    flex: 1;
    max-width: 400px;
    overflow: hidden;
    border-radius: 0 0 80% 80% / 10% 10% 20% 20%; /* wave-like shape */
    border: 6px solid #f1d2a7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* .about-image img {
    width: 100%;
    height: auto;
    display: block;
} */
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-container,
    .about-container.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        clip-path: none;
        border-radius: 10px;
        border: none;
    }

    .about-text {
        max-width: 90%;
    }
}
/* On mobile: make circular */
@media (max-width: 768px) {
    .about-image {
        border-radius: 50%;
        border: 4px solid #f1d2a7;
        max-width: 220px;
        margin: 0 auto;
    }
}
.timeline-section {
    padding: 60px 20px;
    background-color: #fff9ee;
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    color: #5c3a00;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #f1d2a7;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: #fff4dd;
    border: 2px solid #d8b88e;
    border-radius: 50%;
    font-size: 24px;
    color: #b26200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #5c3a00;
}

.timeline-content p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        padding-left: 0;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-icon {
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
    }

    .timeline-content {
        text-align: center;
        padding: 0 20px;
    }
}
.gurus-section {
    padding: 60px 20px;
    background-color: #fffefa;
    text-align: center;
}

.gurus-title {
    font-size: 2rem;
    color: #5c3a00;
    margin-bottom: 40px;
}

.gurus-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.guru-card {
    background: #ffffff;
    border: 1px solid #f1d2a7;
    border-radius: 20px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.guru-card:hover {
    transform: translateY(-5px);
}

.guru-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #f1d2a7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.guru-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guru-role {
    font-weight: bold;
    color: #b26200;
    margin-bottom: 5px;
}

.guru-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .gurus-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Gallery Hero */
.gallery-hero {
  text-align: center;
  margin: 40px 0 20px;
}
.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.page-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Gallery Grid */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
/* Gallery Items */
.gallery-item {
  width: 280px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Video style */
.gallery-item a,
.gallery-item video,
.gallery-item iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}


.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.gallery-item:hover {
  transform: scale(1.03);
}


/* Filters */
.gallery-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: #f6e5b4;
  color: #5c3a00;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #eac776;
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .page-title {
    font-size: 2rem;
  }
  .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* .contact-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background: linear-gradient(to right, #fff5e1, #fffdf7);
} */
.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5e1c1;
}
/* .contact-hero h1 {
  font-size: 2.5rem;
  color: #5c3a00;
} */
 .contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}


/* .contact-hero p {
  font-size: 1.1rem;
  color: #7d5c20;
  margin-top: 10px;
} */
.contact-hero p {
  font-size: 18px;
  color: #555;
}
/* .contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  align-items: start;
  background-color: #fffefa;
} */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: stretch;
}
/* .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
} */
.contact-form form {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.contact-map,
.contact-form {
  flex: 1 1 500px;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.contact-form label {
  margin-top: 15px;
  font-weight: bold;
}
/* .contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
} */
.contact-form input,
.contact-form textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-size: 16px;
}
/* .contact-form button {
  padding: 12px;
  background-color: #f6c453;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
} */
.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #c19a6b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #eab308;
}

/* Responsive for small devices */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map,
  .contact-form {
    width: 100%;
  }
}


.media-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-wrapper video,
.media-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}




/* The main content grows to fill space between header and footer */
.content {
  flex: 1;
}

.footer-contact p {
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.footer-contact i {
  color: #a85b27;
}


