/*******************************************************
 * General & Body
 *******************************************************/
 body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #b7827c; /* Maroon text by default */
    background: #FFFFFF;
  }
  
  /*******************************************************
   * NAVBAR (Transparent Over Hero)
   *******************************************************/
  /* The header is position:absolute so the slideshow is behind it. */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Ensures nav is above hero slides */
    margin: 0;
    padding: 0;
  }
  
  .navbar {
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    background: rgba(176, 146, 144, 0.5); /* pinkish translucent */
    border-radius: 0 0 30px 0;
    /* If you want a box-shadow:
       box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    */
  }
  
  /* Hamburger hidden on desktop by default */
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6e4640;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    z-index: 99999; /* ensure clickable above hero */
  }
  
  .nav-links li {
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    display: inline-block;
    padding: 8px 16px;
    background: #b4a4a2; /* maroon */
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links a:hover {
    background: #b8857e; /* pink */
    color: #b4a4a2;
    transform: scale(1.05);
  }
  
  /* Logo on far right */
  .logo {
    margin-left: auto;
  }
  .logo img {
    height: 75px;
    width: auto;
  }
  
  /*******************************************************
   * MOBILE RESPONSIVE NAV
   *******************************************************/
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
    /* Hide nav links by default, show on .show toggle */
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px; /* below nav-container */
      left: 10px;
      background: #b4a4a2;
      border-radius: 10px;
      padding: 10px;
      gap: 10px;
      z-index: 99999;
    }
    .nav-links.show {
      display: flex;
    }
    .nav-links a {
      padding: 10px 15px;
      font-size: 1rem;
      text-align: left;
      background: #b8857e;
      color: #ffffff;
      border-radius: 15px;
    }
  }
  
  /*******************************************************
   * HERO SECTION & SLIDESHOW
   *******************************************************/
  .hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden; /* so slides won't bleed outside */
  }
  
  .hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* behind hero content */
    overflow: hidden;
  }
  
  /* Each .slide is absolutely placed, starts transparent. */
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease; /* fade in/out in 1s */
  }
  
  /* The active slide is visible (opacity:1). */
  .slide.active {
    opacity: 1;
  }
  
  /* Hero content on top of the slides */
  .hero-content,
  .hero-button {
    position: relative;
    z-index: 1; /* above the slideshow */
  }
  
.hero-content {
    position: absolute;
    top: 180px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 95%; /* Allows more space */
    padding: 0 2%; /* Small padding for breathing space */
    overflow: hidden; /* Ensures no cropping */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: #9f746e;
    margin-bottom: 20px;
    display: block;
    white-space: nowrap; /* Keeps in one line */
    max-width: 100%; /* Prevents overflow */
    text-align: center;
    
    /* Dynamically adjust font size based on screen width */
    font-size: clamp(1.5rem, 6vw, 3.5rem);
}


.hero-title {
    width: auto; /* Maintain aspect ratio */
    max-width: 80%; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto 20px; /* Center and add bottom margin */
    animation: fadeInDown 2s;
}
  
  .hero-button {
    position: absolute;
    top: 65%; /* Move button slightly lower */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ensure it's above slides */
}
  .button-image {
    display: inline-block;
    max-width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .button-image:hover {
    transform: scale(1.1);
  }
  
  /*******************************************************
   * Spiral Section (About Snippet)
   *******************************************************/
  .spiral-section {
    background: url('../images/spiral.jpg') center center/cover no-repeat;
    color: #FFFFFF;
    margin: 0;
    padding: 60px 3%;
    box-sizing: border-box;
  }
  
  .about-us-block {
    position: relative;
    min-height: 400px;
    margin-bottom: 60px;
  }
  .about-left {
    max-width: 600px;
  }
  .about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .about-left p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
  }
  
.about-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px; /* Keep the frame size */
    height: 450px; /* Keep the frame size */
    border: 10px solid #b4a4a2; /* Keep the border */
    border-radius: 10px;
    overflow: hidden; /* Ensures no overflow */
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.about-video {
    width: 100%; /* Make video fill the container */
    height: 100%; /* Make video fill the container */
    object-fit: cover; /* Crop to fit without black bars */
}




  .view-perf-block {
    text-align: center;
    margin-bottom: 0;
  }
  .view-perf-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .view-perf-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  /*******************************************************
   * VIDEO SECTION
   *******************************************************/
  .video-section {
    background: #FFFFFF;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 42.25%;
    height: 0;
    overflow: hidden;
    margin: 0 auto;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /*******************************************************
   * Diamond Section
   *******************************************************/
  .diamond-section {
    background: url('../images/diamond.jpg') center center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
  }
  .diamond-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 40px;
    color: #FFFFFF;
  }
  .additional-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .additional-images img {
    width: 300px;
    height: auto;
    border-radius: 10px;
  }
  .button-image {
    display: inline-block;
    max-width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
  }
  .button-image:hover {
    transform: scale(1.1);
  }
  
/* ===============================
 FOOTER
=============================== */
.footer {
  background: url('../images/pink-ribbon.jpg') center center/cover no-repeat;
  padding: 30px 0;
  color: #FFFFFF;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.social-media a img {
    width: 50px;
    height: 50px;
}

/* Hover Glow Effect */
.social-media a:hover {
    transform: scale(1.1);
}

/* Glow Colors */
.facebook:hover {
    box-shadow: 0 0 40px rgba(24, 119, 242, 1);
    background-color: rgba(24, 119, 242, 0.3);
}

.youtube:hover {
    box-shadow: 0 0 40px rgba(255, 0, 0, 1);
    background-color: rgba(255, 0, 0, 0.3);
}

.instagram:hover {
    box-shadow: 0 0 40px rgba(225, 48, 108, 1);
    background-color: rgba(225, 48, 108, 0.3);
}

.tiktok:hover {
    box-shadow: 0 0 40px rgba(255, 0, 80, 1);
    background-color: rgba(255, 0, 80, 0.3);
}

/* Contact Info - Desktop (Left Aligned) */
.contact-info {
  font-size: 1.1em;
  text-align: left;
}

/* Style Email & Phone */
.contact-info a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Footer Logo */
.footer-logo img {
  max-height: 85px;
}

/* =========== Mobile View Fix =========== */
@media (max-width: 768px) {
  .footer .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .social-media {
      flex-wrap: wrap;
      justify-content: center;
  }

  /* Center the email & phone on mobile */
  .contact-info {
      text-align: center;
      width: 100%; /* Ensures full width for centering */
  }

  .contact-info a {
      display: block; /* Makes sure each link is on its own line */
      margin-bottom: 5px;
  }
}

  
  /*******************************************************
   * Animations & Intersection Observer
   *******************************************************/
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .scroll-animation.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /*******************************************************
   * Additional Responsive Tweaks
   *******************************************************/
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5em;
    }
    /* Adjust hero-content so nav doesn't overlap text */
    .hero-content {
      top: 140px;
    }
    .about-us-block {
      min-height: auto;
      margin-bottom: 40px;
    }
    .about-left {
      max-width: 100%;
    }
    .about-image {
      position: static;
      margin-top: 20px;
      text-align: center;
    }
    .about-image img {
      max-width: 70%;
      height: auto;
    }
    .view-perf-block {
      margin-top: 40px;
    }
  }
  
  /* Responsive font scaling for smaller screens */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3em; /* Reduce size for tablets */
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5em; /* Reduce size for mobile */
    max-width: 90%; /* Allow better spacing */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2em; /* Smaller size for very small screens */
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 6vw; /* Reduce size even more for tiny screens */
  }
}
