
:root {
  --primary: rgba(245, 65, 125, 0.815);
  --accent: #4CAF50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.5;
   background: white;
}
html{

scroll-behavior:smooth;

}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding : 10px 5%;
  position:sticky;
  top: 0;
  background: rgba(245, 65, 125, 0.815);
  backdrop-filter: blur(10px);
  z-index: 1000;
  
}
.logo{
  font-family: Garamond, serif;
  font-size: 40px;
  color: white;
}
a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.nav-links a:hover{
transform: scale(1.05); 
color:#ffe082;

}
.nav-links {
  display: flex;
  gap: 25px;
  color: white;
}

.nav-links a {
  color:black;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 50px 8%;
  background: linear-gradient(180deg,#fff6fb,white);
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-text {
  flex: 1;
}
.card1 p{
  font-size: 0.915rem;
  justify-content: center;
  text-align: justify;
  font-family: "Alkatra", system-ui;
  line-height: 1.8;
}
.hero h1 {
  font-size: 2rem;
  text-align: center;
  font-family: "Alkatra", system-ui;
  line-height: 1.3;
}

.hero p {
  margin: 15px 0;
  text-align: center;
  font-family: "Alkatra", system-ui;
  font-size: 1rem;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; 
}

.btn {
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition:.3s;
  cursor: pointer;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.primary {
  background: var(--primary);
  color: white;
}

.secondary {
  background: var(--primary);
  color: white;
}

/* VIDEO */
.hero-video-box {
  flex: 1;
}

.hero-video-box video {
  width: 100%;
  border-radius: 16px;
}

/* GRID */
.container {
  padding: 60px 8%;
}
.gridOne {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(250px, 0.7fr));
  justify-content: center; /* prevents stretching */
  max-width: 800px;
  margin: 20px auto;
  gap: 20px;
  overflow:hidden;
}
.gridTwo {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(250px, 0.7fr));
  justify-content: center; /* prevents stretching */
  max-width: 800px;
  margin: 20px auto;
  gap: 20px;
  overflow:hidden;
}
.gridThree {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(250px, 0.7fr));
  justify-content: center; /* prevents stretching */
  max-width: 800px;
  margin: 20px auto;
  gap: 20px;
  overflow:hidden;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 0.7fr));
  justify-content:center; /* prevents stretching */
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  overflow:hidden;
}
.card1 {
  background: #ffffff;
  border-radius: 10px;
  transition:.35s;
}
.card1:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.card1 img{
  height:260px;
  width:100%;
  object-fit:cover;
  border-radius: 16px;
  display:block;
}
.card {
  padding:30px;
  background: #eee;
  border-radius: 10px;
  transition:.35s;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.card img{
  height:220px;
  width:100%;
  object-fit:cover;
  border-radius: 16px;
  display:block;
}
.gallery img{
  width: 100%;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
  transition:.4s;

}
.gallery img:hover{
  transform:scale(1.05);
  }

/* CONTACT */
.contact {
  text-align: center;
  padding: 50px 8%;
  background: var(--primary);
  color: white;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 0.7fr));
  justify-content: center; /* prevents stretching */
  margin: 20px auto;
  gap: 50px;
}

.box {
  flex: 1;
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

/* WHATSAPP */
@keyframes float{
  0%{
     transform:translateY(0);
    }
  50%{
     transform:translateY(-8px);
    }
  100%{
     transform:translateY(0);
    }
   }

.whatsapp>img{
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  object-fit:cover;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  animation:float 2s infinite;
}
.whatsapp>img:hover{
  
  box-shadow: 0 0 15px #25D366;
  transition: 0.3s;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Add this */
@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* Dialog Box */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Modal Box */
.modal-content {
  background: #fff;
  padding: 25px;
  width:min(90%,420px);
  margin: 10% auto;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Inputs */
.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.modal-content input:focus{
    outline:none;
    border:2px solid var(--primary);
    box-shadow:0 0 10px rgba(245,65,125,.25);
}

/* WhatsApp Button */
.modal-content button {
  background: #25D366;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  cursor: pointer;
}
  

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

 .navbar {
        padding: 5px 5%;
    }
 .logo{
  font-size: 20px;
}
.menu-toggle {
  font-size: 18px;
}
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
.gridOne,
.gridTwo,
.gridThree,
.grid{

grid-template-columns:1fr;

}
.contact {
  padding: 20px 5%;
}
  .contact-box {
    flex-direction: column;
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.6rem;  /* smaller heading */
  }

  .hero p {
    font-size: 0.7rem;
    padding: 0 10px;   /* prevents text touching edges */
  }

  .buttons {
    flex-direction: column; /* stack buttons */
    align-items: center;
  }

  .btn {
    width: 90%;   /* full width buttons */
    max-width: 300px;
    text-align: center;
    cursor: pointer;
  }
   .modal-content {
    width: 90%;
    margin: 30% auto;
    padding: 20px;
  }

  .modal-content h2 {
    font-size: 1.2rem;
  }

  .modal-content input {
    padding: 12px;
    font-size: 14px;
  }

  .modal-content button {
    padding: 12px;
    font-size: 14px;
  }
}


