/* GLOBAL */
body{
    margin:0;
    font-family:'Fredoka';
    color:#333;
    overflow-x: hidden;
}

/* =========================
      HEADER + NAVBAR
=========================*/
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10;
  gap: 20px; /* spacing between logo and menu */
}


.logo img {
  width: 200px;
  padding-right: 0;
}

/* -------------------------
      DESKTOP NAV STYLING
--------------------------*/
.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5em;
  list-style: none;
}


.desktop-menu li a {
  text-decoration: none;
  font-weight: bold;
  color: rgb(115, 228, 115);
  font-size: 1.1rem;
}

.desktop-menu li a:hover {
  color: rgb(247, 161, 175);
  text-decoration: underline;
}

/* =========================
      HAMBURGER (MOBILE)
=========================*/
.hamburger {
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
  /* overflow-x: hidden; */
  display: none;
}

.hamburger.hidden{
  display: none !important;
}

#menu-close-btn {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgb(247, 161, 175);
  font-weight: bold;
  font-size: 28px;
  cursor: pointer;
  z-index: 200001;
}

.close-btn-item {
  margin: 0 !important;
  padding: 4px 0 !important;
}

/* Make hamburger follow while scrolling */
@media (max-width: 900px) {
  .hamburger {
    position: fixed;
    top: 20px;
    right: 22px;
    z-index: 200000;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
  }

  .desktop-menu{
    display: none !important;
  }
  .hide-desktop{
    display: block !important;
  }
  .hide-mobile{
    display: none !important;
  }

}

/* =========================
         MOBILE MENU
=========================*/
#mobile-menu {
  display: none;
  position: fixed;
  top: 10px;
  right: 16px;
  width: 200px;
  background: white;
  list-style: none;
  padding: 0.1em 1.0em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateX(150%);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
  z-index: 30000;
  /* overflow-x: hidden; */
}

#mobile-menu.open {
  display: block;
  transform: translateX(0);
  pointer-events: auto;
  
}

#mobile-menu li {
  margin: 20px 0;
}

#mobile-menu a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  color: rgb(115,228,115);
}

#mobile-menu a:hover {
  color: rgb(247,161,175);
}


/* =========================
       SHOW/HIDE LOGIC
=========================*/
.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

/* MOBILE RULES */
@media (max-width: 900px) {
  .hide-desktop {
    display: block !important;
  }
 .hide-mobile, .desktop-menu {
    display: none !important;
  }

  .hamburger {
    position: fixed;
    top: 20px;
    right: 22px;
    z-index: 200000;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    display: block;
  }
}

/* Small devices */
@media (max-width: 430px) {
  #mobile-menu {
    width: 85%;
    right: 8px;
    padding: 1.4em 1em;
    
  }
}





/* SLIDESHOW */
.slideshow-container{
width:100%;
max-width:1200px;
height:600px;
margin:auto;
overflow:hidden;
border-radius:20px;
position:relative;
}

.mySlides{
display:none;
width:100%;
height:100%;
}
.mySlides img{
width:100%;
height:100%;
object-fit:cover;
border-radius:20px;
}

.prev,.next{
cursor:pointer;
position:absolute;
top:50%;
padding:16px;
color:white;
font-weight:bold;
font-size:22px;
user-select:none;
background-color:rgba(0,0,0,0.35);
border-radius:5px;
transform:translateY(-50%);
}

.prev:hover,.next:hover{
background-color:rgba(0,0,0,0.55);
}
.prev{
left:10px;
}
.next{
right:10px;
}
.dot{
cursor:pointer;
height:13px;
width:13px;
margin:0 3px;
background-color:#bbb;
border-radius:50%;
display:inline-block;
}
.active,.dot:hover{
background-color:#717171;
}

/* CONTENT & CARDS */
.heading{
text-align:center;
padding:50px 20px;
}

.label{
color:rgb(247,161,175);
font-size:40px;
letter-spacing:1.5px;
margin-bottom:10px;
}

.title{
font-size:70px;
color:rgb(115,228,115);
margin-bottom:20px;
}

.des{
font-size:30px;
line-height:1.6;
}

.welcome-heading {
  text-align: center;
  font-size: 60px;
  margin: 30px 0 20px 0;
  font-weight: bold;
}

.welcome-heading .word1 {
  color: rgb(247,161,175);
}

.welcome-heading .word2 {
  color: rgb(115,228,115);
}

button{
background-color:white;
color:rgb(247,161,175);
border:none;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}

button:hover{
background-color:rgb(115,228,115);
color:white;
}

a.button {
background-color: white;
color: rgb(247,161,175);
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-block;
}

a.button:hover {
background-color: rgb(115,228,115);
color: white;
}

.journey{
border-radius:10px;
background-color:rgb(247,161,175);
color:white;
text-align:center;
padding:100px 20px;
}

.cards{
display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.card{
margin-top:150px;
background-color:white;
border-radius:10px;
box-shadow:0 4px 8px rgba(0,0,0,0.1);
flex:1;
max-width:30%;
text-align:center;
}

.card img{
width:100%;
height:auto;
border-radius:10px;
}

.card h3{
font-size:20px;
margin:10px 0;
}

.card p{
font-size:16px;
color:#555;
padding:0 10px 20px;
}

@media (max-width:768px){

.cards{
    flex-direction:column;
}
.card{
    max-width:100%;margin-top:20px;
}
}


/* CLASSES INFO */
.class-info{
  text-align:center;
  padding:50px 20px;
}
.word1{
    color:rgb(247,161,175);
    
}
.word2{
    color:rgb(115,228,115);
}
.description,
.additional-info{
    font-size:16px;
    max-width:600px;
    margin:0 auto 20px;
    line-height:1.6;
}

/* FOOTER */
/* footer{
    background-color:#333;
    color:white;
    padding:20px 0;
    text-align:center;
} */

footer {
  background-color:#FFF7EC;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Fredoka';
  margin-top: 40px;
  border-radius: 20px;
  font-size: 25px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section h3, .footer-section h4 {
  color: rgb(247, 161, 175);
  margin-bottom: 10px;
}

.footer-section p, .footer-section a {
 color: black;
  font-size: 16px;
  text-decoration: none;
}

.footer-section a:hover {
  color: rgb(115, 228, 115);
}

.icons i {
  margin: 0 10px;
}

copyright {
  margin-top: 20px;
  color: #999;
}

.icons{
    margin-top:10px;
}




/* Programs Page */
.programs {
  padding: 60px 20px;
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.program-card {
  background: #fffaf1;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 14px rgba(0,0,0,0.12);
}

/* Gallery Page */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  margin-top: 40px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 230px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}




/* ============================
   PROGRAMS PAGE 
============================= */

#programs {
    background: #f9f9f9;
    padding: 60px 0;
    font-family: 'Fredoka';
    text-align: center;
}

#programs h2 {
    font-size: 36px;
    color: rgb(247, 161, 175);
    margin-bottom: 20px;
}

#programs p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #555;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.program-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s ease;
}

.program-box:hover {
    transform: translateY(-8px);
}

.program-box h3 {
    font-size: 22px;
    color: rgb(115, 228, 115);
    margin-bottom: 12px;
}

.program-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.program-box ul {
    padding-left: 18px;
}

.program-box ul li {
    padding: 5px 0;
    color: #555;
    font-size: 15px;
}

/* Extra Section */
.extra-section {
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.extra-section h2 {
    margin-bottom: 20px;
    color: rgb(247, 161, 175);
}

.extra-section ul {
    list-style: none;
    padding: 0;
}

.extra-section ul li {
    margin: 10px 0;
    font-size: 17px;
    color: #555;
}

/* Responsive Padding */
@media (max-width: 768px) {
    #programs {
        padding: 40px 15px;
    }
}



/* ============================
   GALLERY PAGE 
============================= */

#gallery {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    font-family: 'Fredoka';
}

#gallery h2 {
    font-size: 36px;
    color: rgb(247, 161, 175);
    margin-bottom: 10px;
}

#gallery p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #666;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    background: #fdfdfd;
    transition: 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.3s ease;
}

/* Hover Effect  */
.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 190px;
    }
}
