/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #f7b4a7;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f7b4a7;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 90px;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6) contrast(1.1);
  transform: scale(1.05);
}

.hero-content h1 {
  font-size: 5rem;
  color: #f7b4a7;
  text-shadow: 0 0 25px rgba(247, 180, 167, 0.5), 0 0 50px rgba(247, 180, 167, 0.3);
  animation: fadeIn 1.5s ease forwards;
  text-align: center;
  z-index: 1;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* PETALS EFFECT */
.petals {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.petals span {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #f7b4a7;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatPetals linear infinite;
}

/* Random sizes, positions, speeds */
.petals span:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; width: 12px; height:12px;}
.petals span:nth-child(2) { left: 20%; animation-duration: 15s; animation-delay: 2s; width: 18px; height:18px;}
.petals span:nth-child(3) { left: 35%; animation-duration: 10s; animation-delay: 1s; width: 14px; height:14px;}
.petals span:nth-child(4) { left: 50%; animation-duration: 18s; animation-delay: 3s; width: 16px; height:16px;}
.petals span:nth-child(5) { left: 65%; animation-duration: 11s; animation-delay: 0.5s; width: 13px; height:13px;}
.petals span:nth-child(6) { left: 75%; animation-duration: 14s; animation-delay: 2.5s; width: 17px; height:17px;}
.petals span:nth-child(7) { left: 85%; animation-duration: 16s; animation-delay: 1.2s; width: 15px; height:15px;}
.petals span:nth-child(8) { left: 95%; animation-duration: 13s; animation-delay: 0.8s; width: 14px; height:14px;}

/* Float, sway and rotate animation */
@keyframes floatPetals {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(40vh) translateX(10px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(110vh) translateX(-10px) rotate(360deg);
    opacity: 0;
  }
}

/* INTRO SECTION */
.intro {
  padding: 100px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro p {
  font-size: 1.25rem;
  color: #e0e0e0;
  line-height: 1.9;
  letter-spacing: 0.5px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  color: #f7b4a7;
  font-size: 0.95rem;
  border-top: 1px solid #333;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

/* ========================= */
/* HAMBURGER MENU (RESPONSIVE) */
/* ========================= */

/* Hide hamburger on large screens */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #f7b4a7;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* When active (menu open) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* MOBILE MENU STYLE */
@media (max-width: 850px) {
  header {
    padding: 20px 25px;
  }

  .logo img {
    height: 80px;
  }

  /* Hide nav links by default */
  .nav-links {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 60%;
    height: calc(100vh - 90px);
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 12px rgba(247,180,167,0.15);
  }

  /* Show nav links when menu is active */
  .nav-links.show {
    right: 0;
  }

  /* Show hamburger only on phones */
  .hamburger {
    display: flex;
  }

  /* Adjust hero text size */
  .hero-content h1 {
    font-size: 2.8rem;
  }

  /* Adjust intro padding and font */
  .intro {
    padding: 60px 25px;
  }

  .intro p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}

/* TABLET TWEAKS */
@media (max-width: 1150px) and (min-width: 851px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  header {
    padding: 20px 40px;
  }
}

/* ABOUT ME HERO SECTION */
.hero {
  position: relative;
  text-align: center;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 90px; /* adjust if header height changes */
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6) contrast(1.1);
  transform: scale(1.05);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* subtle dark overlay */
  z-index: -1;
}

.hero-content h1 {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  color: #f7b4a7;
  text-shadow: 0 0 25px rgba(247, 180, 167, 0.5), 0 0 50px rgba(247, 180, 167, 0.3);
  animation: fadeIn 1.5s ease forwards;
}

/* PETALS EFFECT */
.petals {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.petals span {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #f7b4a7;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatPetals linear infinite;
}

.petals span:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; width: 12px; height:12px;}
.petals span:nth-child(2) { left: 20%; animation-dura

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #f7b4a7;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 820px) {
  nav ul.nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #19191c;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    width: 70%;
    transition: right 0.3s ease;
    z-index: 99;
  }

  nav ul.nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= CONTACT PAGE ================= */

/* HERO IMAGE (for pages like Contact, About, Services) */
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.55) contrast(1.1);
}

/* CONTACT INFO SECTION */
.contact-info p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-info b {
  color: #f7b4a7;
}

/* ================= RESPONSIVE DESIGN ================= */

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE NAVIGATION */
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger {
    display: flex;
  }
}

/* For smaller screens, center text and adjust hero */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .intro p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .contact-info {
    font-size: 1rem;
    padding: 0 16px;
  }
}

/* ================= SERVICES PAGE ================= */
.services-list {
  max-width: 850px;
  margin: 0 auto 80px auto;
  padding: 0 40px;
}

.service-item {
  margin-bottom: 44px;
  text-align: left;
}

.service-item h2 {
  color: #f7b4a7;
  font-size: 1.65rem;
  margin-bottom: 16px;
}

.service-item p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================= HEADER & NAVIGATION ================= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: #0e0e10;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  width: 130px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #f7b4a7;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ffffff;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 22px;
  cursor: pointer;
  position: relative;
  z-index: 200;
}

.hamburger span {
  background: #f7b4a7;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.4s ease;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE NAVIGATION */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    background: #111114;
    flex-direction: column;
    width: 70%;
    height: calc(100vh - 70px);
    align-items: center;
    justify-content: start;
    gap: 35px;
    padding-top: 80px;
    transition: right 0.4s ease-in-out;
  }

  .nav-links.show {
    right: 0;
  }
}

/* RESPONSIVE: Services text on phones */
@media (max-width: 600px) {
  .service-item h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .service-item p {
    font-size: 1rem;
    text-align: center;
  }

  header {
    padding: 18px 30px;
  }
}

/* ================= PRICING PAGE ================= */
.pricing-list {
  max-width: 850px;
  margin: 0 auto 80px auto;
  padding: 0 32px;
}

.pricing-block {
  margin-bottom: 44px;
  background: linear-gradient(111deg, #19191c 51%, #f7b4a733 100%);
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(247,180,167,0.09);
  padding: 38px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 30px rgba(247,180,167,0.15);
}

.pricing-block h2 {
  color: #f7b4a7;
  font-size: 1.65rem;
  margin-bottom: 18px;
}

.pricing-block p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.pricing-block ul {
  list-style: none;
  padding: 0;
  color: #d2d2d6;
  font-size: 1.09rem;
  margin-bottom: 17px;
  letter-spacing: 0.1px;
}

.pricing-block ul li {
  margin-bottom: 11px;
}

.pricing-block ul li b {
  color: #f7b4a7;
}

.pricing-block ul li.total {
  color: #fff;
  margin-top: 14px;
}

.pricing-block .note {
  color: #f7b4a7;
  font-size: 0.97rem;
  margin-top: 2px;
}

/* RESPONSIVE PRICING */
@media (max-width: 768px) {
  .pricing-block h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .pricing-block p,
  .pricing-block ul {
    font-size: 1rem;
    text-align: center;
  }

  .pricing-list {
    padding: 0 18px;
  }
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #f7b4a7;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When menu active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive navigation */
@media (max-width: 900px) {
  nav ul.nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 70%;
    background: #19191c;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    gap: 40px;
  }

  nav ul.nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  nav ul.nav-links li a {
    font-size: 1.4rem;
  }
}

/* ======== HAMBURGER & MOBILE NAV ======== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  top: 22px;
  right: 28px;
  pointer-events: auto;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #f7b4a7;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav (hidden by default) */
@media (max-width: 900px) {
  /* hide normal inline nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(15,15,18,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
    gap: 28px;
    transition: right 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    z-index: 1050;
  }

  /* show when toggled */
  .nav-links.show {
    right: 0;
    opacity: 1;
  }

  /* show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* bigger menu links on mobile */
  .nav-links li a {
    font-size: 1.25rem;
  }

  /* make sure header is on top */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(10,10,12,0.6);
    backdrop-filter: blur(8px);
  }
}

/* Ensure hero/video sits under header */
.hero, .hero-video, .hero-image {
  position: relative;
  z-index: 1;
}
