/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Navigation Bar === */
.navbar {
  height: 70px;
  background-color: #050230;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: rgb(236, 203, 163);
  z-index: 9999;
  flex-wrap: wrap;
}


/* === Sections === */
.section {
  text-align: center;
  min-height: 80vh;
  color: rgb(236, 203, 163);
}

.hero {
  background-color: #050347;
  text-align: center;
  padding: 20px 20px;
}

#hero-img {
  width: 200px;
  background-color: rgb(236, 203, 163);
  border-radius: 50%;
  margin-top: 20px;
  padding: 20px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgb(236, 203, 163);
}

.hero p {
  font-family: Poppins, sans-serif;
  max-width: 400px;
  margin: 0 auto 80px;
  font-size: 0.9rem;
  color: rgb(236, 203, 163);
}

/* === Enquiry Link === */

.e-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(236, 203, 163);

}

.e-link a span {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 1.4s;
}


/* === Footer === */
.footer {
  text-align: center;
  padding: 10px;
  background-color: #0b0202;
}



/* =================================== Animation Keyframes ================================ */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate Hero Section Elements */
#home #hero-img,
#home h1,
#home h2,
#home p {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
}

#home #hero-img { animation-delay: 0.2s; }
#home h1       { animation-delay: 0.5s; }
#home h2       { animation-delay: 0.8s; }
#home p        { animation-delay: 1.1s; }





/* ========================== Responsive: Tablets (<= 900px) ================================== */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-links {
    font-size: 20px;
    justify-content: center;
    margin-top: 10px;
  }

  .section {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  #hero-img {
    width: 170px;
    padding: 15px;
  }

  .e-link a {
    margin-top: 90px;
  }
}

/* ====================== Responsive: Mobile Devices (<= 600px) ============================= */
@media (max-width: 600px) {
  #logo {
    width: 50px;
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.8rem;
    padding: 0 15px;
    font-family: 'Times New Roman', Times, serif;
  }

  .section {
    padding-top: 80px;
    min-height: 90vh;
  }

  .e-link a {
    font-family: 'Times New Roman', Times, serif;
    margin-top: 125px;
  }

}
