
/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

h1,h2,h3 {
  font-family: 'Playfair Display', serif;
}

section {
  padding: 80px 10%;
}

/* HEADER */
/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* NAV DESKTOP */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

/* UNDERLINE ANIMATION */
nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffffff;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* MOBILE MENU */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -250px; /* hidden */
    width: 250px;
    height: 100%;
    background: #111;
    flex-direction: column;
    padding-top: 40px;
    transition: 0.4s ease;
    z-index: 1000;
  }

  nav a {
    color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #222;
  }

  /* ACTIVE MENU */
  nav.active {
    right: 0; /* slide in */
  }
  
}

/* HERO */
.hero {
  height: 100vh;
  background: url('./images/kids/kids-photography.JPG') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 50px;
}

.hero p {
  opacity: 0.8;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
}

.card h3, .card p {
  padding: 15px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ABOUT */
.about {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* TESTIMONIALS */
.testimonials {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.review {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  color: #faf8f8;
}

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f59e0b;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #25D366;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #1ebe5d;
}

/* Studio Info */
.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  line-height: 1.6;
  color: #555;
}

/* Map */
.map {
  margin-top: 40px;
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* MAP */
.map {
  margin-top: 40px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 130px;
  width: 60px;
}

/* FOOTER */
footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

footer .social-links {
  margin-top: 15px;
}

footer .social-links a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.2s;
}

footer .social-links a img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1); /* white icons */
}

footer .social-links a:hover {
  transform: scale(1.2);
}