@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ==================== NAVBAR ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #FFD700;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover { color: #FFD700; }

/* Hamburger (now a <button>, reset default button styles) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==================== HERO ==================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: 60px;
  isolation: isolate;
}

.slides-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide1 { background-image: url('images/slides/slide1.jpg'); }
.slide2 { background-image: url('images/slides/slide2.jpg'); }
.slide3 { background-image: url('images/slides/slide3.jpg'); }
.slide4 { background-image: url('images/slides/slide4.jpg'); }

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.hero-btn {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Slide Dots */
.slide-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  pointer-events: all;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #FFD700;
  transform: scale(1.4);
}

/* ==================== SECTIONS ==================== */
#gallery, #services, #pricing, #results, #booking, #contact {
  padding: 70px 20px;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #111;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #1a0008; /* matches the dark red product-shot backgrounds so there's no mismatched letterboxing */
}

.gallery-grid img {
  width: 100%;
  height: auto;       /* preserves the photo's natural aspect ratio — no cropping */
  max-height: 520px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto;
}

.gallery-grid img:hover { transform: scale(1.03); }

.gallery-item figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
}

/* ==================== SERVICES ==================== */
.service-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  font-size: 1.3rem;
  font-weight: 500;
}

.service-card:hover { transform: translateY(-8px); }

/* ==================== PRICING ==================== */
.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 25px;
  width: 300px;
  text-align: left;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #111;
}

.duration {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.tag {
  background: #FFD700;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 15px;
}

.pricing-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: #444;
}

.pricing-card ul li::before {
  content: "✓ ";
  color: #FFD700;
  font-weight: 700;
}

.note {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
  font-style: italic;
}

.btn {
  display: block;
  text-align: center;
  background: #111;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover { background: #FFD700; color: #000; }

/* ==================== RESULTS ==================== */
#results {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

#results h2 { color: #111; margin-bottom: 50px; }

.results-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.result-card {
  background: #1a1a1a;
  padding: 35px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.result-card:hover { transform: translateY(-10px); }

.result-card h3 {
  font-size: 2.8rem;
  color: #FFD700;
  margin-bottom: 8px;
}

.result-card p {
  color: #ddd;
  font-size: 1rem;
}

/* ==================== BOOKING ==================== */
.booking-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form input,
.booking-form textarea {
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
  width: 100%;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #FFD700;
  outline: none;
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form button {
  padding: 15px;
  background: #FFD700;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.booking-form button:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
}

.contact-card i {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 10px;
  display: block;
}

.contact-card p {
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.contact-card a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  word-break: break-all;
}

.contact-card a:hover { color: #FFD700; }

/* ==================== FLOATING WHATSAPP ==================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s;
}

.floating-whatsapp:hover { transform: scale(1.1); }

/* ==================== FOOTER ==================== */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
}

/* ==================== RESPONSIVE — TABLET (max 768px) ==================== */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }

  .logo { font-size: 20px; }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    gap: 4px;
    border-top: 1px solid #222;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  .nav-links li { border-bottom: 1px solid #222; }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav-links.active { display: flex; }
  .hamburger { display: flex; }

  /* Hero */
  #hero {
    min-height: 100svh;
    margin-top: 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-content p { font-size: 0.95rem; }

  .hero-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .slide-dots { bottom: 20px; }

  /* Sections */
  #gallery, #services, #pricing, #results, #booking, #contact {
    padding: 48px 16px;
  }

  #results { padding: 48px 16px; }

  h2 { font-size: 2rem; margin-bottom: 28px; }

  /* Gallery — 2 columns on tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-grid img { max-height: 360px; }

  /* Services — 2 columns */
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card { padding: 22px 14px; font-size: 1.1rem; }

  /* Pricing — single column */
  .pricing-card { width: 100%; max-width: 400px; }
  .pricing-container { gap: 20px; }

  /* Results — 2 columns */
  .results-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .result-card { padding: 28px 14px; }
  .result-card h3 { font-size: 2.2rem; }

  /* Contact — 2 columns */
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .floating-whatsapp { width: 50px; height: 50px; font-size: 1.7rem; bottom: 18px; right: 18px; }
}

/* ==================== RESPONSIVE — MOBILE (max 480px) ==================== */
@media (max-width: 480px) {
  .logo { font-size: 19px; }

  .hero-content h1 { font-size: 1.65rem; }
  .hero-content p { font-size: 0.9rem; }
  .hero-btn { padding: 13px 24px; font-size: 0.95rem; }

  h2 { font-size: 1.7rem; margin-bottom: 22px; }

  /* Gallery — 2 columns on small phones */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid img { max-height: 300px; }
  .gallery-item figcaption { font-size: 0.85rem; }

  /* Services — 1 column */
  .service-cards { grid-template-columns: 1fr; }
  .service-card { font-size: 1rem; padding: 18px; }

  /* Pricing */
  .pricing-card { padding: 24px 18px; }
  .price { font-size: 1.6rem; }

  /* Results — 2 columns (keep) */
  .results-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .result-card { padding: 22px 10px; }
  .result-card h3 { font-size: 1.9rem; }
  .result-card p { font-size: 0.85rem; }

  /* Contact — 1 column */
  .contact-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-form input,
  .booking-form textarea { font-size: 0.95rem; }

  .booking-form button { font-size: 0.95rem; }

  #gallery, #services, #pricing, #results, #booking, #contact {
    padding: 40px 14px;
  }

  #results { padding: 40px 14px; }

  .floating-whatsapp { width: 46px; height: 46px; font-size: 1.5rem; }
}

/* ==================== EXTRA SMALL (max 360px) ==================== */
@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.45rem; }
  h2 { font-size: 1.5rem; }
  .results-container { grid-template-columns: 1fr; }
  .result-card h3 { font-size: 2.2rem; }
}
