* {
  margin: 0;
  padding: 0;  
  font-family: "Poppins", sans-serif;

}


html, body {
  height: 100vh;
  overflow: none;
}  

nav {
  position: fixed;
  display: flex;
  justify-content: space-between;
}
nav h2 {
  font-family: "Fleur De Leah", cursive;
  font-size: 36px;
  font-weight: 400;
  margin-top: 10px;
  margin-left: 10px;
  color: rgb(238, 100, 150);
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  display: inline-block;
  list-style: none;
  margin: 0 20px;
  position: relative;
}

.nav-links ul li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.nav-links ul li a:hover {
  color: rgb(238, 100, 150);
}



.main .container-fluid {
  margin: 0;
  padding: 0;
  height: 85vh;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* Intro Section */
.intro {
  background: linear-gradient(454deg, rgb(248, 186, 195), rgb(238, 100, 150) );
  align-content: center;
  text-align : center;
 height:85vh;
  width: 100%;
  font-size: .8rem;
  margin-top: 0;
  text-decoration-style:none;
  scroll-snap-align: start;

}
/* Section spacing */
.intro-section {
    position: relative;
    padding: 50px 0;
}

/* Text styling */ 
.intro-text h1 {
    font-size: 42px;
    font-weight: 400px;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
}

/* Image stack container */
.image-stack {
    position: relative;
    width: 100%;
    height: 420px;
}

/* Common image style */
.image-stack img {
    position: absolute;
    width: 260px;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}

/* Individual positioning + tilt */
.image-stack .img-1 {
    top: 30px;
    left: 40px;
    transform: rotate(-6deg);
    z-index: 1;
}

.image-stack .img-2 {
    top: 0;
    left: 200px;
    transform: rotate(4deg);
    z-index: 3;
}

.image-stack .img-3 {
    top: 80px;
    left: 260px;
    transform: rotate(-3deg);
    z-index: 2;
}
.image-stack .img-4 {
    top: 75px;
    left: 80px;
    transform: rotate(-9deg);
    z-index: 4;
}

/* Hover lift */
.image-stack img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 5;
}



.hero-btn {
  text-decoration: none;  
  margin-top: 0px;
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  border-radius: 25px;
  background: transparent;
  font-weight: bold;  
}
.hero-btn:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #333;
  transition: .4s;
} 


/* ============================= */
/* SECTION 1 – 85vh LOCK */
/* ============================= */

#section1.intro-section {
    height: 85vh;
    max-height: 85vh;
    overflow: hidden;        /* critical */
    display: flex;
    align-items: center;
}

/* Keep container full height */
#section1 .container,
#section1 .row {
    height: 100%;
}

/* Text constraints */
.intro-text h1 {
    font-size: clamp(24px, 4vw, 42px);
}

.intro-text p {
    font-size: clamp(14px, 1.2vw, 16px);
    max-width: 580px;
}

/* Image stack constrained to viewport */
.image-stack {
    position: relative;
    max-height: 50vh;     /* never exceed */
    width: 100%;
}

/* Images auto scale */
.image-stack img {
    max-height: 50vh;
    width: auto;
}

/*ad start */
.bang-ad {
    position: absolute;
    top: 40px;
    left: 180px;
    width: 300px;
    height: 300px;
    transform: rotate(-10deg);
    cursor: pointer;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bang-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.35));
}

.bang-ad span {
    position: relative;
    color: #fff;
    font-family: "Boogaloo", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.bang-ad:hover .bang-shape {
    fill: #7219e7;
    stroke: rgba(126, 26, 241, 0.8);
}

.bang-ad:hover span {
    color: #ffffff;
}

/* ad stop */


/* ============================= */
/* MOBILE SAFETY */
/* ============================= */

@media (max-width: 767px) {

    #section1.intro-section {
        height: 90svh;      /* safe viewport height for mobile */
        max-height: 90svh;
        padding: 30px 15px;
    }

    .intro-section .row {
        flex-direction: column;
        justify-content: center;
    }

    .intro-text {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Image stack becomes controlled */
    .image-stack {
        max-height: 35svh;
        display:-moz-box;
        justify-content: center;
        object-fit: contain; /*ak*/
    }

    .image-stack img {
        max-height: 35svh;
        position:relative;
        transform: none !important;
        margin: 0 6px;
        display: inline-block; /*ak*/
        width: 150px; /*ak*/
        height: 20svh;/*ak*/
    }
    .image-stack .img-1 {
    top: 20px;
    left: 30px;
    transform: rotate(-6deg);
    z-index: 1;
}

.image-stack .img-2 {
    top: 0;
    left: 0px;
    transform: rotate(4deg);
    z-index: 3;
}

.image-stack .img-3 {
    top: 0px;
    left: 30px;
    transform: rotate(-3deg);
    z-index: 2;
}

.image-stack .img-4 {
    top: 0px;
    left: 0px;
    transform: rotate(-9deg);
    z-index: 4;
}

}


/* Testimonial section */

.testimonials {
  padding: 60px 0 30px;
  background: linear-gradient(154deg, rgb(248, 186, 195), rgb(238, 100, 150) );
  height: 85vh;
  width: 100%;
  align-items: center;
  font-size: .8rem;
  margin-top: 0;
  text-decoration-style:none;
  scroll-snap-align: start;
}

.testimonials p {
    text-align: center;
    align-content: center;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0px;
}

/* ============================= */
/* SECTION 2 – FIXED VH LAYOUT */
/* ============================= */

#section4 {
    height: 75vh;              /* adjust if needed */
    overflow: hidden;          /* prevent page overflow */
    padding: 60px 0 30px;
}

/* Scroll only reviews, not header */
#section4 .container {
    height: calc(100% - 60px); /* space for heading */
}

.reviews-grid {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;       /* space for scrollbar */
}

/* Card style (only card shadow) */
.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

/* Review image */
.testimonial-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 767px) {

    #section4 {
        height: 85svh;   /* safe mobile viewport */
        padding: 40px 0 20px;
    }

    .testimonial-card img {
        height: 220px;
    }
}



/* Contacts Section */
.contacts {
  background: linear-gradient(54deg, rgb(248, 186, 195), rgb(238, 100, 150) );
  align-content: center;
  text-align : center;
  height:85vh; 
  width: 100%;
  font-size: .8rem;
  margin-top: 0;
  text-decoration-style:none;
  scroll-snap-align: start;
  align-items: flex-end;
}

/* modification */
.contact-section {
  min-height: 70vh;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}
.contact-bottom {

  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.contact-details {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

.contact-details p {
  margin-bottom: 15px;
}

.contact-image img {
  width: 220px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .contact-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .contact-image img {
    width: 180px;
    margin-top: 20px;
    align-self:center;
    margin-bottom: 20px;
  }
}

/* modification end*/


footer {
  min-height: 15vh;
  background-color: #333; 
  color: #fff;
  text-align: center;
  padding: 0px 0;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
nav h2 {
  font-family: "Fleur De Leah", cursive;
  font-size: 26px;
  font-weight: 600;
  margin-top: 20px;
  margin-left: 0px;
  margin-bottom: 0px;
  color: rgb(238, 100, 150);
}

  .nav-links {
    text-align: center;
    padding: 0px 0;
  }

  .nav-links ul li {
    display: block;
    margin: 10px 0;
  }

.categories .col-xs-4 {
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  height: 100%; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
}   

.categories .col-xs-4 a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 50;
}


}