*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body{

    margin: 0;
    height: 100vh;
    font-family: arial;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

header{

    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: white;
    backdrop-filter: blur(10px);
    text-align: center;

}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
}

.logo img{
  width: 45px;
  border-radius: 50%;
}
.logo h2{
  color: rgb(136, 44, 141);
  font-size: 22px;
}
nav a{
  color: rgb(136, 44, 141);
  margin-left: 15px;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  transition: 0.3s;
}

nav a:hover{
  background: rgba(255,255,255,0.2);
}

.hero{

    min-height: 85vh;
    background:linear-gradient(120deg, #a18cd1, #fbc2ed);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

}

.hero h1{

  margin: 10px;
    font-size: 50px;
    animation: fadeUp 1s ease;
}

.hero p{
  margin: 18px 0;
  animation: fadeUp 1.5s ease;
}

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* MENU ICON (hidden desktop) */
.menu-icon{
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HIDE CHECKBOX */
#menu-toggle{
  display: none;
}


.btn {

    background: #6c3df4;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover{

    background: #4b25c9;
}

.book-btn:hover{
background:#434190;
}

.social-icons{
margin-top:25px;
}

.social-icons a{
margin:0 12px;
font-size:26px;
color:white;
transition:0.3s;
}

.social-icons a:hover{
color:#222;
transform:scale(1.2);
}

.about{
    padding: 80px;
    text-align: center;
    background:linear-gradient(120deg, #57469f, #c778b3);
    color: whitesmoke;

}

.about p {
  margin: 10px;
}

.classes {

    padding: 80px;
    text-align: center;
    background-color:white;
    color: rgb(78, 52, 110);


}

.card-box{

    display: flex;
    justify-content: center;
    gap: 30px;

}

.card{

    width: 260px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background:linear-gradient(120deg, #a18cd1, #fbc2ed);
}

.card img{

    width: 100px;
    height: auto;
    border-radius: 10px;

}

.form-box{

    width: 400px;
    margin: 100px auto;
    background-color: black;

}
input,select,textarea{
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background-color: black;

}
footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;

 footer h3{
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
    margin: 5px 0;
 }

 footer p{
    text-align: center;
    justify-content: center;
    align-items: center;
 }

.footer-social{
margin:20px 0;
display: flex;
justify-content: center;
gap: 20px;
margin-top: 15px;
}

.footer-social a{
margin:0 12px;
font-size:24px;
color:white;
transition:0.3s;
}

.footer-social a:hover{
color:white;
transform:scale(1.3);
}

.copyright{
font-size:13px;
color:white;
margin-top:15px;
}
}

@media (max-width: 768px) {

  /* Header fix */
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  /* 🔥 Navbar 2 upar 2 niche */
  nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  nav a {
    margin: 0;
    padding: 8px;
  }

  /* 🔥 Hero section */
  .hero {
    padding: 20px;
    text-align: center;
  }

  /* 🔥 Heading bada */
  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  /* 🔥 General text */
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  /* 🔥 Form (contact page) */
  form {
    width: 100%;
  }

  input, textarea, select {
    width: 100%;
    margin-bottom: 10px;
  }

}