/* =====================
   GLOBAL RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* =====================
   HEADER / NAVBAR
===================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

header h2 {
  color: #d63384;
  font-size: 22px;
  font-weight: 700;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #d63384;
}

/* spacing for fixed header */
section {
  padding: 100px 60px;
}

/* =====================
   HERO SECTION
===================== */
#home {
  height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("https://images.unsplash.com/photo-1487412912498-0447578fcca8")
      center / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#home h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

#home p {
  font-size: 18px;
  margin-bottom: 30px;
}

#home button {
  padding: 14px 30px;
  margin: 0 10px;
  border: none;
  border-radius: 30px;
  background: #d63384;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

#home button:hover {
  background: #b92a6d;
  transform: translateY(-3px);
}

/* =====================
   SERVICES
===================== */
#services {
  background: #fafafa;
}

#services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
}

#services > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
}

#services div {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#services h3 {
  margin-bottom: 15px;
  color: #d63384;
}

#services ul li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

/* =====================
   PACKAGES
===================== */
#packages {
  background: #fff;
}

#packages h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

#packages > p {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
}

#packages div {
  background: linear-gradient(135deg, #ffe6f0, #fff);
  padding: 35px;
  margin-bottom: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

#packages div:hover {
  transform: translateY(-8px);
}

#packages h3 {
  margin-bottom: 10px;
}

#packages button {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: #d63384;
  color: #fff;
  cursor: pointer;
}

/* =====================
   GALLERY
===================== */
#gallery {
  background: #fafafa;
  text-align: center;
}

#gallery h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

#gallery p {
  margin-bottom: 40px;
  color: #666;
}

#gallery div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

#gallery div p {
  background: #fff;
  padding: 80px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* =====================
   WHY CHOOSE US
===================== */
section ul {
  max-width: 700px;
  margin: auto;
}

section ul li {
  list-style: none;
  padding: 12px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

/* =====================
   ABOUT
===================== */
#about {
  background: #fff;
}

#about h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 25px;
}

#about p {
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;
  color: #555;
  text-align: center;
}

/* =====================
   CONTACT
===================== */
#contact {
  background: #fdf2f8;
  text-align: center;
}

#contact h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

#contact p {
  margin-bottom: 10px;
}

#contact button {
  margin: 15px 10px 0;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

#contact button:first-of-type {
  background: #333;
  color: #fff;
}

#contact button:last-of-type {
  background: #25d366;
  color: #fff;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 5px 0;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

  section {
    padding: 80px 25px;
  }

  #home h1 {
    font-size: 34px;
  }
}
