
html, body, h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================= */
/* GLOBAL */
/* ============================= */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #bcd3db;
  overflow-x: hidden;
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  margin: 0;
  border: none;
  box-shadow: none;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #ff7a6b;
}

.menu a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #3aa58c;
}


/* ============================= */
/* ANNOUNCEMENT BAR */
/* ============================= */

.announcement-bar {
  width: 100%;
  background: #f5c400;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-block;
  padding: 12px 0;
  font-weight: 600;
  color: #fff;
  animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ========================= */
/* HOME SECTION FIXED */
/* ========================= */

.home-section {
  position: relative;
  padding: 120px 40px;
}

.layout {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.left-block {
  flex: 1;
  text-align: center;
}

.left-block img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
}

/* CENTER */
.center-block {
  flex: 1;
  text-align: center;
  margin-top: -40px;
}

.arch-image {
  width: 100%;
  max-width: 480px;
  height: 580px;
  margin: auto;
  border-radius: 300px 300px 0 0;
  overflow: hidden;
}

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

.center-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 400;              /* lighter like Wix */
  font-size: 46px;               /* slightly smaller than before */
  line-height: 1.3;             /* more vertical breathing */
  letter-spacing: 1.5px;           /* elegant spacing */
  text-align: center;

  color: #f26c63;                /* softer coral */
  
  margin-top: 40px;
  margin-bottom: 15px;

  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* SUBTEXT BUTTON STYLE */
.center-sub {
  margin-top: 30px;
  display: inline-block;
  padding: 15px 35px;
  border: 2px solid #ff7a6b;
  border-radius: 40px;

  color: rgba(255, 122, 107, 0.25); /* faded by default */
  background: transparent;

  font-size: 14px;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover Highlight */
.center-sub:hover {
  color: #ff7a6b;
  background-color: rgba(255,122,107,0.08);
  border-color: #ff7a6b;
}


/* RIGHT */
.right-block {
  flex: 1;
  text-align: center;
}

.circle-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.4;
}

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

/* RESPONSIVE */
@media (max-width: 1000px) {
  .layout {
    flex-direction: column;
    gap: 50px;
  }

  .arch-image {
    height: 450px;
  }

  .circle-image {
    opacity: 1;
  }
}

/* Background shapes */

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.bg-circle.big {
  width: 500px;
  height: 500px;
  right: 5%;
  bottom: -120px;
}

.bg-circle.small {
  width: 200px;
  height: 200px;
  left: 10%;
  top: 200px;
}

/* ============================= */
/* WELCOME SECTION */
/* ============================= */

.welcome-section {
  background: linear-gradient(
    135deg,
    #9fd3c7 0%,
    #b7e3d3 100%
  );
  padding: 140px 60px;
}

.welcome-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: #ff7a6b;
}

.welcome-text p {
  max-width: 500px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* Image Card */

.image-card {
  position: relative;
  background: #f7f1e5;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.image-card img {
  width: 450px;
  border-radius: 18px;
}

.since-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ff7a6b;
  color: white;
  padding: 15px 25px;
  border-radius: 40px;
  font-weight: 600;
}

/* ============================= */
/* PROGRAMS SECTION */
/* ============================= */

.programs-section {
  background: #c9bedb;
  padding: 140px 60px;
}

.programs-header {
  text-align: center;
  margin-bottom: 80px;
}

.programs-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: #ff7a6b;
}

.programs-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.programs-left {
  max-width: 400px;
}

.programs-left p {
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
}

/* FINAL PROGRAM CARD */

.program-card {
  background: #e6a1a7;
  padding: 120px 100px;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.program-column {
  flex: 1;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* hover lift effect */
.program-column:hover {
  transform: translateY(-10px);
}

/* title glow on hover */
.program-column:hover h3 {
  color: white;
  transform: scale(1.05);
}

.program-card {
  background: linear-gradient(
    135deg,
    rgba(230,161,167,0.95) 0%,
    rgba(220,140,150,0.95) 100%
  );
  padding: 120px 100px;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
  display: flex;
  justify-content: space-between;
  gap: 100px;
  position: relative;
  overflow: hidden;
}

/* subtle soft glow overlay */
.program-card::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.2) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
}

.program-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.age-range {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 15px;
}

.program-column h3 {
  transition: all 0.4s ease;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin: 15px 0 20px 0;
  color: #b08fd9;
}

.program-column p {
  color: rgba(255,255,255,0.95);
  line-height: 1.9;
  max-width: 280px;
}

/* ============================= */
/* WHATSAPP */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 99999; /* 🔥 increase this */
}

@media (max-width: 768px) {
  .whatsapp-float,
  .call-float {
    bottom: 20px;
  }
}
/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 1000px) {

  .layout,
  .welcome-container,
  .programs-container,
  .program-card {
    flex-direction: column;
    text-align: center;
  }

  .arch-image {
    width: 320px;
    height: 400px;
  }

  .welcome-text h2,
  .programs-header h2 {
    font-size: 40px;
  }

  @media (max-width: 768px) {

    .circle-image {
      display: block;
      opacity: 1;
      margin: 20px auto;
      max-width: 260px;
      height: 260px;
    }
  
  }
  

  /* .circle-image {
    display: none;
  } */

  .program-column:not(:last-child)::after {
    display: none;
  }

  .program-column p {
    max-width: 100%;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================= */
/* MEALS / DAILY SCHEDULE SECTION */
/* ========================================= */

.meals-section {
  background: linear-gradient(180deg, #e79aa3 0%, #e49aa4 100%);
  padding: 160px 60px;
  text-align: center;
}

/* HEADER */
.meals-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #f26c63;
  margin-bottom: 10px;
}

.meals-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 80px;
}

/* GRID */
/* .schedule-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
} */

@media(max-width:768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.schedule-card {
  background: #f4eaea;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: left;

  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hover animation */
.schedule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Time */
.schedule-card h3 {
  color: #ff7a6b;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Title */
.schedule-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Description */
.schedule-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
}

/* Bottom Note */
.meals-note {
  margin-top: 80px;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.8);
}

/* RESPONSIVE */
@media(max-width: 1000px) {

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

  .meals-header h2 {
    font-size: 36px;
  }

  .meals-section {
    padding: 100px 30px;
  }
}

/* ========================================= */
/* FEATURES SECTION */
/* ========================================= */

.features-section {
  background: #f26c63;
  padding: 120px 60px;
}

.features-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-card {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 40px 30px;
  color: white;
  transition: all 0.4s ease;
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* Responsive */
@media(max-width:1000px){
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================= */
/* CTA SECTION */
/* ========================================= */

.cta-section {
  position: relative;
  background: url('your-image.jpg') center/cover no-repeat;
  padding: 180px 40px;
  text-align: center;
  overflow: hidden;
}

/* Blue overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(120,170,190,0.75);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  color: white;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 40px;
  background: white;
  color: #5a8ca3;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:1000px){
  .cta-content h2 {
    font-size: 36px;
  }
}

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

.footer {
  background: #c9bedb;   /* soft lavender */
  padding: 100px 60px 40px 60px;
  color: rgba(0,0,0,0.6);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

/* Logo */
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #b08fd9;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
}

/* Headings */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgba(0,0,0,0.7);
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff7a6b;
}

/* Contact text */
.footer-col p {
  margin-bottom: 12px;
  font-size: 14px;
}

/* Bottom line */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  color: rgba(0,0,0,0.5);
}

/* Responsive */
@media(max-width:1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer {
    text-align: center;
  }
}

@media(max-width:600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.top-header {
  display: fixed;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 25px 60px;
  top: 0;
  background: #bcd3db;
  z-index: 1000;
  border-bottom: none;
}

html{
  scroll-behavior: smooth;
}

.logo a {
  text-decoration: none;
  color: #ff7a6b;
}

.menu a.active {
  color: #ff7a6b;
  border-bottom: 2px solid #ff7a6b;
  padding-bottom: 4px;
}

/* PAGE HERO */
.page-hero {
  padding: 120px 40px;
  text-align: center;
  background: #f8b6b0;
  color: white;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
}

.page-hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* SERVICES GRID */
.services-grid {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.service-box:hover {
  transform: translateY(-10px);
}

@media(max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* ABOUT PAGE */
/* ============================= */

.about-hero {
  background: #c6d9e0;
  padding: 80px 40px 120px 40px;
  margin-top: -1px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #ff7a6b;
  margin-bottom: 15px;
}

.about-hero p {
  color: #3aa58c;
  letter-spacing: 2px;
  font-weight: 600;
}

.mission-section {
  background: linear-gradient(135deg, #9fd3c7, #b7e3d3);
  padding: 120px 60px;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.mission-image img {
  width: 500px;
  border-radius: 12px;
}

.mission-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #3aa58c;
  margin-bottom: 20px;
}

.mission-text p {
  color: rgba(0,0,0,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.active-link {
  color: #ff7a6b !important;
  font-weight: 700;
}

/* ============================= */
/* VALUES SECTION */
/* ============================= */

.values-section {
  background: #c6d9e0;
  padding: 120px 60px;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: #ff7a6b;
  margin-bottom: 10px;
}

.values-header p {
  color: #3aa58c;
  letter-spacing: 2px;
  font-weight: 600;
}

.values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-card {
  background: #e79aa3;
  padding: 50px;
  border-radius: 10px;
  transition: 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #ff7a6b;
  margin-bottom: 15px;
}

.value-card p {
  color: rgba(0,0,0,0.7);
  line-height: 1.7;
}

/* Responsive */
@media(max-width:1000px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-image img {
    width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 50px;
  }
}

section:first-of-type {
  margin-top: 0;
}

.home-section,
.about-hero,
.welcome-section {
  margin-top: 0;
}

.program-detail {
  padding: 100px 60px;
  background: #cfe3e8;
}

.back-link a {
  color: #3aa58c;
  text-decoration: none;
  font-weight: 600;
}

.detail-container {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  align-items: center;
}

.detail-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.detail-content {
  background: #f7a6b6;
  padding: 50px;
  border-radius: 20px;
  color: white;
}

.detail-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
}

.detail-content .age {
  display: block;
  margin: 10px 0 20px;
  font-weight: 600;
}

.detail-content ul {
  margin: 20px 0;
}

.enroll-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: white;
  color: #f77a6b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

/* PAGE HERO */
.page-hero {
  background: #bcd3db;
  padding: 120px 20px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #ff7a6b;
  margin-bottom: 20px;
}

.page-hero p {
  color: #3aa58c;
  letter-spacing: 2px;
  font-weight: 600;
}

/* CONTACT SECTION */
.contact-section {
  padding: 120px 60px;
  background: linear-gradient(135deg, #f4a7a7 0%, #cdb8e6 100%);
}

.contact-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 80px;
}

.contact-info,
.contact-form {
  flex: 1;
  background: rgba(255,255,255,0.9);
  padding: 60px;
  border-radius: 20px;
}

.contact-info h2,
.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ff7a6b;
  font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.form-btn {
  background: #ff7a6b;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.form-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .contact-container{
    flex-direction: column;
  }

  .page-hero h1{
    font-size: 50px;
  }
}

.map-section {
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
}

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: #ff7a6b;
  margin-bottom: 15px;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 25px;
  background: #ff7a6b;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== SUCCESS MODAL ===== */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popUp 0.3s ease;
}

.modal-content h2 {
  color: #ff7a6b;
  margin-bottom: 15px;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  background: #ff7a6b;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.modal-content button:hover {
  opacity: 0.9;
}

@keyframes popUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.menu a.active {
  color: #ff7a6b;
  font-weight: 600;
}

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

.gallery-top {
  text-align: center;
  padding: 40px 0;
  background: #cdb8e6;
}

.add-picture-btn {
  background: #ff7a6b;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.add-picture-btn:hover {
  background: #ff5c4d;
}

.gallery-section {
  background: #cdb8e6;
  padding: 40px 60px 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* SHARE SECTION */

.share-section {
  background: linear-gradient(to right, #9ed8c2, #cdb8e6);
  text-align: center;
  padding: 80px 40px;
}

.share-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #2f9f7d;
}

.share-section p {
  max-width: 700px;
  margin: 20px auto 0;
}

/* STAR RATING */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 28px;
  cursor: pointer;
  margin: 20px 0;
}

.star-rating span {
  color: #ccc;
  transition: 0.3s;
}

.star-rating span.active,
.star-rating span:hover,
.star-rating span:hover ~ span {
  color: #ffb400;
}

/* ===================== */
/* REVIEWS SECTION */
/* ===================== */

.reviews-section {
  background: #cdb8e6;
  padding: 100px 40px;
  text-align: center;
}

.reviews-container {
  max-width: 1100px;
  margin: auto;
}

.reviews-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #222;
}

.review-subtitle {
  margin-bottom: 60px;
  font-size: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.review-card p {
  margin: 20px 0;
}

.stars {
  color: gold;
  font-size: 20px;
}

/* ===================== */
/* REVIEW FORM */
/* ===================== */

.review-form-wrapper {
  background: #e7f3f3;
  padding: 60px 40px;
  border-radius: 20px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

.review-form input,
.review-form textarea,
.review-form select {
  padding: 12px 15px;
  border: 2px solid #ff7a6b;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.review-form textarea {
  height: 120px;
  resize: none;
}

.review-btn {
  background: #ff7a6b;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.review-btn:hover {
  background: #ff5c4a;
}

/* MODAL STYLE */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  width: 400px;
}

.modal-content h2 {
  color: #ff7a6b;
  margin-bottom: 10px;
}

.modal-content button {
  margin-top: 15px;
  padding: 10px 25px;
  background: #ff7a6b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= REVIEW MODAL ================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: linear-gradient(135deg, #fff7f0, #ffe8d9);
  padding: 40px;
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: popUp 0.4s ease;
}

.success-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: #ff7a6b;
  margin-bottom: 10px;
}

.modal-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

.modal-btn {
  background: #ff7a6b;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.modal-btn:hover {
  background: #ff5c4f;
  transform: translateY(-2px);
}

@keyframes popUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.why-us {
  padding: 100px 20px;
  background: #fdf8f5;
  text-align: center;
}

.why-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 60px;
  color: #ff7a6b;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-section {
  padding: 80px 20px;
  background: #f4f0fa;
}

.faq-question {
  width: 100%;
  padding: 20px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
}

/* ===== SERVICES PAGE FIX ===== */

.services-grid {
  max-width: 1200px;
  margin: 100px auto;
}

.service-box {
  background: linear-gradient(
    135deg,
    #f7a6b6 0%,
    #e79aa3 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

/* Soft glow effect */
.service-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.2) 0%,
    transparent 70%
  );
  top: -80px;
  right: -80px;
}

/* Title style */
.service-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
}

/* Make links look like buttons */
.service-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.service-box a:hover {
  background: white;
  color: #e79aa3;
}

/* SERVICES PAGE */

.services-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: #bcd3db;
}

.services-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: #ff7a6b;
}

.services-hero p {
  color: #3aa58c;
  letter-spacing: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 40px;
  padding: 80px 60px;
  background: #bcd3db;
}

.service-card {
  background: #e79aa3;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-card h2 {
  font-family: 'Playfair Display', serif;
  color: #ff7a6b;
}

.enroll-section {
  background: #f2ead5;
  text-align: center;
  padding: 120px 20px;
}

.enroll-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #ff7a6b;
}

.enroll-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  border: 2px solid #ff7a6b;
  text-decoration: none;
  color: #ff7a6b;
}

.reviews-section {
  background: #cdb8e6;
  padding: 120px 60px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
}



/* Animations */

body {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-image {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.logo {
  position: relative;
}

.logo::after {
  content: "✨ ✨ ✨";
  position: absolute;
  top: -10px;
  left: 120px;
  font-size: 18px;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.8); }
}

nav a {
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ff7aa2;
  transform: scale(1.1);
}

img {
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}

/*cute pulse*/

.cta-button {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}


.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* FLOATING CALL BUTTON */
/* ============================= */

.call-float {
  position: fixed;
  bottom: 95px; /* sits above WhatsApp */
  right: 25px;  /* same side as WhatsApp */
  background: #ff7a6b;
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s ease;
}

.call-float:hover {
  background: #ff5c4f;
  transform: scale(1.1);
}



/* ============================= */
/* MEET THE OWNER SECTION */
/* ============================= */

.owner-section {
  background: #fdf8f5;
  padding: 120px 60px;
}

.owner-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.owner-image img {
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.owner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #ff7a6b;
  margin-bottom: 10px;
}

.owner-text h4 {
  color: #3aa58c;
  margin-bottom: 20px;
  font-weight: 600;
}

.owner-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(0,0,0,0.7);
}

/* Responsive */
@media(max-width:1000px){
  .owner-container {
    flex-direction: column;
    text-align: center;
  }

  .owner-image img {
    width: 100%;
    max-width: 350px;
  }
}


/* ============================= */
/* OWNER BADGES */
/* ============================= */

.owner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.owner-badges span {
  background: #ff7a6b;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.owner-badges span:hover {
  background: #ff5c4f;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:1000px){
  .owner-badges {
    justify-content: center;
  }
}



/* ============================= */
/* HEADER TOUR BUTTON */
/* ============================= */

.tour-btn {
  margin-left: 30px;
  background: #ff7a6b;
  color: white !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.tour-btn:hover {
  background: #ff5c4f;
  transform: translateY(-2px);
}



/* ============================= */
/* HERO TOUR BUTTON */
/* ============================= */

.hero-tour-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 35px;
  background: #ff7a6b;
  color: white;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.hero-tour-btn:hover {
  background: #ff5c4f;
  transform: translateY(-3px);
}


/* ============================= */
/* TESTIMONIALS SECTION */
/* ============================= */

.testimonials-section {
  background: #f4f0fa;
  padding: 120px 60px;
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.testimonials-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #ff7a6b;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  margin-bottom: 60px;
  color: #3aa58c;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: #ffb400;
  font-size: 22px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(0,0,0,0.7);
}

.testimonial-card h4 {
  color: #ff7a6b;
  font-weight: 600;
}

/* Responsive */
@media(max-width:1000px){
  .testimonials-section {
    padding: 80px 30px;
  }
}

/* ================= FOOD PAGE ================= */

.food-hero {
  background: #bcd3db;
  padding: 120px 20px;
  text-align: center;
}

.food-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: #ff7a6b;
}

.food-hero p {
  color: #3aa58c;
  letter-spacing: 1px;
}

.food-page {
  background: #fdf8f5;
  padding: 100px 20px;
}

.food-container {
  max-width: 1000px;
  margin: auto;
}

.food-container h2 {
  font-family: 'Playfair Display', serif;
  color: #ff7a6b;
  margin-top: 40px;
  margin-bottom: 15px;
}

.food-container ul {
  line-height: 1.8;
  margin-bottom: 20px;
}

.veg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.veg-grid span {
  background: #ff7a6b;
  color: white;
  padding: 8px;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
}

.nutrition-note {
  margin-top: 40px;
  padding: 20px;
  background: #ffe8d9;
  border-radius: 15px;
  font-weight: 500;
}



/* ============================= */
/* GLOBAL MOBILE OPTIMIZATION */
/* ============================= */

@media (max-width: 768px) {

  section {
    padding: 80px 25px !important;
  }

  h1 {
    font-size: 38px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  p {
    font-size: 15px;
    line-height: 1.7;
  }

}

@media (max-width: 768px) {

  .top-header {
    flex-direction: column;
    padding: 15px 20px;
  }

  .menu {
    margin-top: 10px;
  }

  .menu a {
    margin: 8px;
    font-size: 14px;
  }

  .tour-btn {
    margin-top: 10px;
  }

}

@media (max-width: 768px) {

  .center-heading {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .arch-image {
    height: 350px;
  }

  .hero-tour-btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 768px) {

  .program-card {
    padding: 50px 30px !important;
    gap: 40px;
  }

}


@media (max-width: 768px) {

  .gallery-section {
    padding: 40px 20px;
  }

  .gallery-item img {
    height: 220px;
  }

}

@media (max-width: 768px) {

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .tour-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 14px 20px;
    font-size: 16px;
  }

}


@media (max-width: 768px) {

  .hero-tour-btn {
    width: 90%;
    margin: 20px auto 0 auto;
    display: block;
    padding: 16px;
    font-size: 15px;
    border-radius: 35px;
  }

}

@media (max-width: 768px) {

  .circle-image {
    border-radius: 20px;
    height: auto;
    max-width: 280px;
    margin: 20px auto;
  }

}

@media (max-width: 768px) {

  .features-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 25px;
  }

  .feature-card {
    padding: 35px 25px;
  }
}

/* ============================= */
/* FLOATING STARS BACKGROUND */
/* ============================= */

.floating-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-stars span {
  position: absolute;
  font-size: 18px;
  animation: floatStars 12s linear infinite;
  opacity: 0.6;
}

/* Random positions */
.floating-stars span:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-stars span:nth-child(2) { left: 30%; animation-delay: 3s; }
.floating-stars span:nth-child(3) { left: 55%; animation-delay: 6s; }
.floating-stars span:nth-child(4) { left: 75%; animation-delay: 2s; }
.floating-stars span:nth-child(5) { left: 90%; animation-delay: 5s; }

@keyframes floatStars {
  0% {
    top: 100%;
    transform: translateY(0);
  }
  100% {
    top: -10%;
    transform: translateY(-100vh);
  }
}

section, header, footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .floating-stars {
    display: none;
  }
}


/* ================= BALLOONS ================= */

.balloon-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.balloon-background span {
  position: absolute;
  font-size: 35px;
  animation: floatBalloon 20s linear infinite;
  opacity: 0.25;
}

.balloon-background span:nth-child(1) { left: 10%; animation-delay: 0s; }
.balloon-background span:nth-child(2) { left: 30%; animation-delay: 5s; }
.balloon-background span:nth-child(3) { left: 60%; animation-delay: 8s; }
.balloon-background span:nth-child(4) { left: 85%; animation-delay: 3s; }

@keyframes floatBalloon {
  0% { top: 110%; }
  100% { top: -10%; }
}

/* Keep content above balloons */
section, header, footer {
  position: relative;
  z-index: 1;
}


@keyframes sparkleFade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}


/* ================= HERO CONFETTI ================= */

.confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.confetti span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff7a6b;
  border-radius: 50%;
  animation: confettiFall 8s linear infinite;
  opacity: 0.4;
}

.confetti span:nth-child(1) { left: 20%; animation-delay: 0s; }
.confetti span:nth-child(2) { left: 40%; animation-delay: 2s; }
.confetti span:nth-child(3) { left: 60%; animation-delay: 4s; }
.confetti span:nth-child(4) { left: 75%; animation-delay: 1s; }
.confetti span:nth-child(5) { left: 90%; animation-delay: 3s; }

@keyframes confettiFall {
  0% { top: -10%; }
  100% { top: 110%; }
}

@media (max-width: 768px) {
  .balloon-background,
  .confetti {
    display: none;
  }
}