html{
    scroll-behavior: smooth;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


 h1, h2, h3 {
  font-family: "Playfair Display", serif;
}
body, p, a {
  font-family: "Montserrat", sans-serif;
}


img{
    max-width: 100%;
    height: auto;
    display: block;
}


/* mobile-nav */

.mobile-logo{
    display: none;
}
.mobile{
    display: none;
}

.mobile-nav{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}
    .burger-menu{
     display: none;
    }

    .burger-menu span{
        width: 100%;
        height: 3px;
        background-color:  #444;

        transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
        
    }
    .burger-menu.active span {
       background-color: red;
    }

    .burger-menu.active span:nth-child(1){
        transform: translateY(11px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2){
        opacity: 0;
    }
    

    .burger-menu.active span:nth-child(3){
        transform: translateY(-11px) rotate(-45deg);
    }

   

   
    .nav-links {
        display: flex;
        flex-direction: column;
        list-style: none;
        gap: 2em;
    }
    .nav-links a{
        text-decoration: none;
        font-weight:600 ;
        font-size: 1.8em;
        color: #fff;
      transition: all ease-in-out 0.3s;
    }
    .nav-links a:hover{
        color: #c989a9;
      
    }

    
    
/* nav */

.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 5px 10px;
}

.navbar ul{
    list-style: none;
    display: flex;
    gap: 1.3em;
}
.navbar ul a{
    position: relative;
    text-decoration: none;
    color: black;
    font-weight: 500;
    letter-spacing: 1px;
}
.navbar ul a::before{
    position: absolute;
    content: "";
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #d88db0;
    transition: all ease-in-out 0.3s;
}
.navbar ul a:hover{
    color:#d88db0;
    transition: all ease-in-out 0.3s;
}
.navbar ul a:hover::before{
    width: 100%;
    
}

.logo{
    width: 80px;
    height: 80px;
    cursor: pointer;
}
.logo img{
    width: 100%;
}

/* hero  */

.hero{
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 50px;
    background-image: url(img/img.2.jpg);
    background-size: cover;
    background-position:center ;
}
.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.hero-content{
    position: relative;
    display:flex;
    flex-direction: column;
    gap: 1.2em;
    justify-self: end;
    padding: 10px;
    margin: 0 20px;
    max-width: 400px;
    z-index: 2;
}
.hero-content h2{
    font-size: 1.1em;
    margin-bottom: -20px;
    color: #c989a9;
}
.hero-content h1{
    font-size: 2.2em;
    font-weight: 900;
}

.btn {
    display: flex;
    gap: 2em;
    align-items: center;
 
}
.btn a{
    text-decoration: none;
    padding: 15px 10px;
    border: 2px solid #d88db0;
    border-radius: 25px;
    color: #fff;
    background-color:linear-gradient(
        135deg,
        #fff 0%,
        #f7e6ef 50%,
        #ffffff 100%
    );
    font-family:"Montserrat", sans-serif ;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(216, 141, 176, 0.25);
}

.btn a:hover {
    background-color: #d88db0;
    color:#fff;
    border-color: #d88db0;
}

.alcolades{
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 5px 20px;
    border-radius: 30px;
    border: 2px solid rgba(216, 141, 176, 0.5);
}



.alcolades p{
    margin: 0;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 1.4px;
    color: #fff;
}
.alcolades span{
    color: #d88db0;
    
} 
/* about-us */

.service{
    text-align: center;
    padding:  30px;
    background-color: #f9f0f3;
    
}

.title-header p{
    font-size: 0.98em;
    color:#1a1a1a; /* complementary softer tone */
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}
.title-header h2{
    
    position: relative;
    font-size:1.3em;
    color: #1a1a1a; /* rich, warm tone */
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase
}
.title-header h2::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -8px;
    left: 0%;
    background-color: #caa2b6;


}
.service-slider{
    overflow: hidden;
}

.service-container{
    display: flex;
    gap: 2em;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-top: 60px;
    padding: 20px 0px;
  
    background-color: #fdf6f0 ;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; 
    overflow-x: auto;
    user-select: none;
    
    
}

.service-container::-webkit-scrollbar{
    display: none; /* hides scrollbar */
}
.service-content{
    display: flex;
    gap: 1.1em;
    max-width: 300px;
    flex: 0 0 80%;
    padding: 10px;
    border-radius: 25px;
    align-items: center;
    transition: transform .3s ease;
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
    scroll-snap-align: start
}

.service-content:hover{
    transform: translateY(-6px);
}


.service-content .img{
   width: 50vw;               /* responsive width */
    max-width: 150px;          /* desktop max size */
    aspect-ratio: 1/1;     
    border-radius: 50%;
    border: 2px solid #c989a9; 
    overflow: hidden;
}
.service-container .img img{
    width:100%;
    height: 100%;
    object-fit: cover;
 
}

.service-content p{
    
     font-size: 1.1em;
     font-weight: 900;
     letter-spacing: 0.8px;
     color: #1a1a1a;
     margin-bottom: 25px;
     position: relative;
     white-space: wrap;
   
}

.service-content p::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
   background-color: #f1c6d6;
}


/* about-content */
.about{
    margin-top: 60px;
}

.about-container{
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 auto;
}
.about-container .img{
    width: 80%;
    max-height: 400px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    flex:0.4 ;
}
.about-container .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.15)
    );
    border-radius: 30px;
}

.about-container .img img{
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.about-content{
    max-width: 420px;
    text-align: center;
    flex:0.6 ;
}

.about-content-title p{
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 0.98em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.about-content-title p:before{
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0%;
    width: 100%;
    background-color: #c989a9;
    height: 2px;
}

.about-content h2{
    padding-top: 20px;
    padding-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 1.5px;
}

.about-description{
     font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #5a3f2b;
    margin-bottom: 20px;
}

.btn-about a{
    display: inline-block;
    padding: 14px 20px;
    
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    /* border: 1px solid #1a1a1a; */
    border-radius: 50px; /* soft, premium look */
    background-color: #d88db0;
    transition: all 0.35s ease;
    
}
.btn-about a:hover {
    background-color: #c989a9;
    color: #fff;
    box-shadow: 0 12px 30px rgba(201, 137, 169, 0.35);
    transform: translateY(-3px);
}

/* Events */


.events {
    padding: 60px 40px;
    background-color: #fff;
    text-align: center;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit ,minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.card-1{
    position: absolute;
    background-image: url(img/img.8.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
}

.card-2{
    position: absolute;
    background-image: url(img/img.39.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
}

.card-3{
    position: absolute;
    background-image: url(img/img.1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
}

.card-4{
    position: absolute;
    /* background-image: url(img/img.12.jpg); */
    background-image: url(img/img.59.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
}



.event-card {
    position: relative;
    padding: 45px 25px;
    border-radius: 30px;
    height: 250px;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.event-card *{
 position: relative;
 z-index: 3;
}
.event-card::before{
    content: "";
    position: absolute;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.6)
    );
    inset: 0;
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
}

.event-card h3 {
    font-size:1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.event-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    line-height: 1.2;
    color: hsl(0, 0%, 100%);
    margin-bottom:10px ;
}  
.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid seashell;
    background: transparent;
    color:seashell;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
.event-btn:hover{
    background: seashell;
    color: black;
    
}

.event-btn:hover::after{
    transform: translateX(6px);
}


.event-btn::after{
    content: " →";
    margin-left: 6px;
}

/* testimonials */



.title-header{
    text-align: center;
}
.testimonials {
    padding: 100px 40px;
    background-color: #faf8f6;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.testimonial-card {
    background-color: #fff;
    padding: 45px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

/* subtle quote accent */
.testimonial-card::before {
    content: "“";
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: #c989a9;
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: 0.3;
}
.stars{
    color: #caa2b6;
     font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #caa2b6;
    font-style: italic;
    letter-spacing: 1px;
}

/* gallery */
/* The Overlay Container */


#gallery {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  overflow-y: auto;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px 20px;
}

.gallery {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.gallery img {
  width: 100%;
    height: auto;
    display: block;
  margin-bottom: 10px;
  border-radius: 5px;
}

.close-gallery {
  float: right;
  background: red;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin: 10px 0px;
  cursor: pointer;
  font-size: 16px;
}
    
  



/* pricing  */


.price-header{
    padding: 0px 30px;
}

.pricing {
    padding: 100px 0px;
    background-color: #fff;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0px 45px;
}
 
.pricing-card {
    background-color: #f3f3f3;
    border-radius: 28px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25 );
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card img{
    width:100%;
    height:230px;
    object-fit: cover;
    display: block;
}
.pricing-card.adjust-img img{
    object-position: center 80%;
}
  
.pricing-card h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 15px;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #1a1a1a;
    border-radius: 40px;
    width: 80%;
    margin: 0 auto;
    padding: 15px 0px;
    background: linear-gradient(135deg, #d88db0, #b97a9c);
    color: #fff;
    box-shadow: 0 12px 25px rgba(216, 141, 176, 0.35);
    margin-bottom: 15px;
    
}

.pricing-card .description{
    margin-bottom: 10px;
    padding:0px 30px;
    line-height: 1.7;
}




.btn-pricing {
    display: inline-block;
    margin: 10px ;
    padding: 14px 32px;
    border-radius: 30px;
    border: 2px solid #d88db0;
    color: #d88db0;

    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-pricing:hover {
    background-color: #d88db0;
    color: #fff;
}

/* special */

.specials{
    /* display: none; */
    text-align: center;
   
}
.special-head{
    padding: 0 20px;
}

.specials-slider{
    margin-top: 60px;
    width: 100%;
    
    overflow: hidden;
    position: relative;
}

.specials-track{
    display: flex;
    
    width: 100%;
    transition: transform .6s ease;
}

.slide{
    position: relative;
    flex-shrink: 0;
    width: 100%;
    display: flex;        /* center content */
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    overflow: hidden;   
    
}

.specials-track img{
    width: 80%;
    height: 90vh;
    object-fit: cover;
   
     object-position: center; 
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);  /* black overlay with opacity */
}


/* commitement  */

.commitment {
    padding: 100px 20px;
    background-color: #fdf6f0;
}

.commitment-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(260px, 1fr);
    gap: 60px;
    align-items: center;
}

/* Text */
.commitment-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b97a9c;
    margin-bottom: 15px;
}

.commitment-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.commitment-content p {
    font-size: 0.98em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Quote */

.founder-quote {
    font-style: italic;
    color: #666;
    border-left: 3px solid #d88db0;
    padding-left: 20px;
    margin-top: 30px;
}

.founder-name {
    margin-top: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Image */
.commitment-img {
    max-width: 380px;   /* controls width */
    height: 460px; 
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.commitment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* footer */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

/* Brand */
.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d88db0;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d88db0;
}

/* Contact */
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #aaa;
}
.footer-socials a {
    color: #ccc;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #d88db0;
}

/* Responsive design  */
 
@media (min-width: 1024px){
    .service-content{
        flex: 0 0 40%;
    }
}

@media (max-width: 992px) {

  
    
 /* .service-container {
        grid-template-columns: repeat(2, 1fr);
    } */
    .service-content p{
        white-space: wrap;
    }
    .service-content {
        flex: 0 0 25%;      /* show 4 cards */
        max-width: 25%;
    }
}


@media (max-width: 768px) {


    .mobile-logo{
        display: block;
        position: relative;
        width: 95px;
        z-index: 99;
    }
    .mobile-logo img{
        position: absolute;
        top: 0;
        left:0 ;
        padding: 10px;
        
    }

    .navbar{
        display:none;
    }
    
    .burger-menu{
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 200; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        transition: transof;
    }

    .mobile{
        display: block;
        position:fixed;
        top: 0%;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #1a1a1ad7;
        z-index: 100;
        transition: 0.5s;
        text-align: center;
    }
    .mobile.active{
        left: 0%;
    }


    /* hero */
    
    .hero{
    min-height: 60vh;  
    margin: 0 auto;    
    text-align: center;    
    padding: 0 20px;
    }
    
    .hero-content {
        margin: 0 auto;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content .btn{
        margin: 0 auto;
        gap: 1rem;
    }
   

    /* services */
    .service-content {
        flex: 0 0 45%;      /* show 2 cards */
        max-width: 70%;
        
  
    

     

    /* .service-container{
        grid-template-columns:repeat(1, 1fr);
       
    } */
    }
    .about-container {
      flex-direction: column;
    }
    .about-container .img {
        width: 100%;
        max-width: 320px;
        height: 300px;
        margin: 0 auto 30px;
        flex: unset;
        border-radius: 22px;
    }

    .about-container .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content {
        padding: 0 10px;
        text-align: center;
    }
    
    .commitment-container{
        padding: 10px 20px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .commitment-container {
        gap: 40px;
    }
    
    .commitment-img{
        max-width: 320px;
        height: 400px;
    }
    

    .commitment-img {
        max-width: 100%;
        height: 440px;
    }
    .specials-track img{
    width: 100%;
    height: 70vh;
    object-fit: cover;
   
     object-position: center; 
}

    .founder-quote {
        border-left: none;
        border-left: 2px solid #d88db0;
        padding-left: 0;
        padding-top: 20px;
    }

    .founder-name {
        text-align: center;
    }

    .specials{
    display: block;
    text-align: center;
   
    }
  gallery{

  height: 80%;

}

    
}



