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

html {
    scroll-behavior: smooth;
    background-color: #FAF0E6;
}

.header{
    min-height: 106vh;
    width: 100%;
    background-image: /*linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),*/ url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}


nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
    width: 100%;
    margin-top: -40px;     
}

nav img{
    width: 200px;
    margin-left: -70px;
}

.nav-links{
    flex: 1;
    text-align: center;
    justify-content: center;
}
.nav-links-box {
    border:0px solid; 
    padding: 10px;
    background-color: #FAF0E6;
    border-radius: 120px;
    display: inline-block; 
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: black;
    text-decoration: none;
    font-family:cursive;
    font-size: 20px;
    margin: 15px;
}


.nav-links ul li:hover {
    background-color: #CBC3E3;
    border-radius: 5px;
}

.text-box{
    width: 90%;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 140px;
}

.text-box h1{
    font-size: 45px;
    font-family:cursive;
    margin-bottom: 10px;
    margin-left: 100px;
    font-family: "Trirong", serif;
}

.quote {
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
  }
  
  .quote h1 {
    font-size: 50px;
    font-family: "Philosopher", serif;
    font-weight: 400;
    line-height: 1.3;
    color: black;
    margin: 0;
  }
  
  /* ✨ Author sits at bottom-left corner of h1 */
  .quote .author {
    position: absolute;
    bottom: -90px; /* slightly below quote */
    left: 10px;       /* bottom-left corner */
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
    color: black;
  }

.text-box p{
    line-height: 30px;
    margin: 0 0 40px;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
}

nav .fa{
    display: none;
}

.book-now-btn {
    position: absolute;
    top: 70px; /* Adjust top positioning */
    right: 30px; /* Adjust right positioning */
    background-color: #CBC3E3;
    color: black;
    padding: 12px 20px;
    font-size: 15px;
    border: none;
    border-radius: 120px;
    text-decoration: none;
    font-family: "Philosopher", sans-serif;
    cursor: pointer;
    display: none; /* Hide by default on mobile */
    z-index: 10;
}

.book-now-btn:hover {
    background-color: #CF9FFF; /* Darker shade on hover */
    transition: 0.3s ease;
}


@media (min-width: 700px) {
    .book-now-btn {
        display: inline-block; /* Show on screens larger than 700px */
    }
}
  
@media(max-width: 700px){
    .text-box h1{
        font-size: 25px;
    }
    nav img{
        margin-left: -40px;
    }
    .text-box p {
        font-size: 1rem;
        line-height: 1.5;
        white-space: normal;
      }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #b6d1d7;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: black;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    .nav-links ul li a{
        margin: 0;
        font-family: cursive;
    }
    .nav-links-box {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }
}

/* 📱 Mobile styling */
@media (max-width: 700px) {
    .quote {
      text-align: left;
      padding: 0 10px;
      margin-bottom: 40px;
    }
  
    .quote h1 {
      font-size: 22px;
      line-height: 1.4;
    }
  
    /* Reset author for mobile: stacked naturally below the quote */
    .quote .author {
      position: static;
      display: block;
      margin-top: -5px;
      margin-left: -10px;
      font-size: 16px;
      text-align: left;
    }
  }

.link-box {
    margin-top: 20px; /* space below the heading */
}

.link-box a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #CBC3E3; /* rectangle color */
    color: black;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    border: 1px solid #1a0202;
}

.link-box a:hover {
    background-color: #CF9FFF; /* hover effect */
}

@media (max-width: 700px) {
    .link-box a {
        font-size: 14px;       /* smaller font for mobile */
        padding: 8px 15px;     /* smaller padding */
    }
}


/*---- About Us ----*/

.about-us{
    padding-top: 50px;
}
.about-us h1{
    text-align: center;
}

.about-us p {
    color: #222; /* softer black for cleaner look */
    font-size: 1.15rem; /* increases text size slightly */
    line-height: 1.8; /* more breathing room between lines */
    font-weight: 400; /* keeps text clean and not too heavy */
    max-width: 800px; /* limits line length for better readability */
    margin: 20px auto; /* centers the text block */
    text-align: center; /* aligns nicely under the heading */
    font-family: "Helvetica Neue", Arial, sans-serif; /* clean modern font */
}

/* --- Responsive tweaks for smaller screens --- */
@media (max-width: 768px) {
    .about-us p {
        font-size: 1rem; /* slightly smaller text for readability */
        line-height: 1.7;
        padding: 0 10px; /* prevent text from touching edges */
        text-align: left; /* more natural reading flow on small screens */
    }

    .about-us h1 {
        font-size: 1.6rem; /* scale down heading slightly */
    }
}

@media (max-width: 480px) {
    .about-us p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-us h1 {
        font-size: 1.4rem;
    }
}

/*---- Meet Our Team ----*/

/* General Section Styling */
.team {
    text-align: center;
    padding: 60px 20px;
  }
  
  .team h1 {
    margin-bottom: 40px;
    font-size: 50px;
    font-weight: 600;
    font-family: "Philosopher", sans-serif;
    color: #808000;
  }
  
  /* Container for members */
  .team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Individual member card */
  .team-member {
    padding: 20px;
    max-width: 450px;
    flex: 1;
    text-align: center;
  }
  
  /* Image styling */
  .team-member img {
    width: 100%;
    height: 600px;              /* fixed height for uniform look */
    object-fit: cover;          /* crops nicely instead of stretching */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }
  
  /* Text styling */
  .team-member h2 {
    font-family: "Philosopher", sans-serif;
    font-size: 30px;
    color: #333;
    margin-top: 20px;
  }

  h6{
    font-size: 12px;
    padding-top: 10px;
  }


/* Left side image zoom-in without breaking frame */
.team-member:first-child img {
    width: 60%;
    height: 300px;        /* same as other images */
    object-fit: cover;    /* fill container without stretching */
    object-position: left center;  /* focus on left side, vertically centered */
    border-radius: 20px;  /* same as other images */
}

/* Image container for hover effect */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  /* Image styling */
  .image-container img {
    width: 60%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  /* Overlay background */
  .overlay {
    position: absolute;
    top: 0;
    left: 82px;
    width: 60%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.6s ease;
  } 
  
  /* Text styling — starts below image */
  .overlay p {
    position: absolute;
    bottom: -10px; /* start off-screen */
    left: 50%;
    transform: translateX(-50%);
    font-family: "Philosopher", sans-serif;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: bottom 1s ease-in-out; /* controls slide-up */
    opacity: 0;
  }
  
  /* Hover effects 
  .image-container:hover img {
    transform: scale(1.08);
  } */
  
  .image-container:hover .overlay {
    opacity: 1;
  }
  
  .image-container:hover .overlay p {
    bottom: 70%;  /* where it stops (top region of image) */
    opacity: 1;
  }

  /* Responsive layout for mobile — side by side */
@media (max-width: 768px) {
    .team-container {
        flex-direction: row; /* side by side */
        flex-wrap: wrap;     /* allow wrapping if needed */
        justify-content: center;
        gap: 20px;           /* spacing between cards */
    }

    .team-member {
        max-width: 45%;      /* adjust width for 2 per row */
        flex: 1;
    }

    .team-member p {
        font-size: 0.95rem; /* slightly smaller for better fit */
        line-height: 1.5;
        text-align: left; /* more natural reading on narrow screens */
        padding: 0 10px; /* adds breathing space */
        max-width: 100%;
    }

    .team-member p a {
        display: inline-block;
        margin-top: 5px;
    }

    /* Make images responsive */
    .team-member img,
    .team-member:first-child img,
    .image-container img {
        width: 140%;
        height: 200px;       /* adjust height for mobile */
        object-fit: cover;
        object-position: center; /* center focus */
    }

    /* Ensure overlay and text appear fully */
    .overlay p {
        bottom: 50%; /* adjust text vertical position for smaller height */
    }
}
@media (max-width: 768px) {
    .image-container:hover .overlay p {
        bottom: 70%; /* stays inside smaller mobile image */
        font-size: 14px; /* optional: slightly smaller text */
    }
}
  
@media (max-width: 480px) {
    .team-member p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Fix left image alignment on mobile */
@media (max-width: 768px) {
    .team-member:first-child .image-container img {
      object-position: 40% center; /* Adjust this value (0% = left, 50% = center, 100% = right) */
      width: 130%; /* optional: slightly zoom in if person is off-center */
      margin-left: -25%; /* optional: shift image to appear centered */
    }
  }
  

/* ==== Mobile: Sync Overlay Hover on Both Images ==== */
@media (max-width: 768px) {

    /* Make overlay black and uniform */
    .overlay {
      background: rgba(0, 0, 0, 0.7) !important;
      left: 0; 
      width: 100%;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
  
    
  
    /* Optional: adjust text position inside overlay */
    .overlay p {
      bottom: 50%;
      transform: translate(-50%, 50%);
      font-size: 1rem;
      opacity: 1;
    }
  
    /* Disable desktop hover transitions for smooth mobile feel */
    .image-container img {
      transition: none;
    }
  }

.learn-more{
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    background-color: #CBC3E3; 
    color: black;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.learn-more:hover{
    background-color: #CF9FFF; 
}

@media (max-width: 700px) {
    .learn-more{
        font-size: 14px;       /* smaller font for mobile */
        padding: 8px 15px;     /* smaller padding */
    }
}

/*---- Services ----*/

.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1{
    font-size: 50px;
    font-weight: 600;
    font-family: "Philosopher", sans-serif;
    color: #808000;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.parag{
    color: black;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between; /* Ensures even spacing between columns */
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    gap: 1.5%; /* Adds small space between items */
}

.service-col{
    flex-basis: 31%; 
    background: #fff;
    border-radius: 25px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.service-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .parag{
        line-height: 30px;
    }
}


.row{
    justify-content: space-evenly; /* Ensures that items in the last row are evenly spaced */
}

.couples{
    width: 50px;
}

.individual{
    width: 50px;
}

.family{
    width: 50px;
}

.art{
    width: 50px;
}

.virtual{
    width: 50px;
}




/*---- Contact Us ----*/
.left-side{
    padding-top: 100px;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-us h1 {
    text-align: center;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
@media(max-width: 700px){
    .contact-col{
        width: 90%;
    }
}
  

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #808000;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.hero-btn{
    background-color: #d9de4e;
    color: black;
    padding: 12px 30px;
    font-size: 13px;
    border: none;
    border-radius: 120px;
    text-decoration: none;
        
    }
    
    .hero-btn:hover{
        background-color: #b8b537; /* Darker shade on hover */
        transition: 0.3s ease;
    }

    label{
        color: #777;
    }
  
    @media (max-width: 700px) {
        .contact-col div h5 {
          font-size: 15px;
        }
      }
      


/*---- Footer ----*/

*{
    box-sizing: border-box;
    margin:0;
    padding:0;

}

body {
    display: block;
    background-color: #FAF0E6;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}


footer{
     background-color: #b6d1d7;
     position: relative;
     width: 100%;
     min-height: 280px;
     padding: 3rem 1rem;
}

.container-footer{
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-reserved{
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.row-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Logo styling for desktop (keep left) */
.col .logo {
    width: 150px;
    margin-bottom: -40px;
    margin-left: -300px;
}

.col{
    min-width: 250px;
    color:#f2f2f2f2;
    font-family: poppins;
    padding:0 2rem;
}

#contact{
    padding-bottom: 60px;
}

.col h4{
    color:#808000;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}



.col h4:hover::after{
    width:30px
}

.social{
    font-size: 25px;
}

/* Instagram icon */
.col .social a .fa-instagram {
    color: #C13584; /* Instagram pink/purple */
    margin-right: 10px;
}

/* LinkedIn icon */
.col .social a .fa-linkedin {
    color: #0077B5; /* LinkedIn blue */
    margin-right: 10px;
}

/* WhatsApp icon */
.col .social a .fa-whatsapp {
    color: #25D366; /* WhatsApp green */
    margin-right: 10px;
}


.col .links a{
    display: block;
    text-decoration: none;
    color:#1a0202;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
    margin-right: 180px;
}



.col .links a:hover::before{
    opacity: 1;
}

.col .links a:hover{
    transform: translateX(-8px);
    color:#ff014fff;
}

.col .contact-details{
    display: inline-flex;
    justify-content: space-between;
}

.col .contact-details i{
    margin-right:15px;
}

/* ===== Responsive Fix for Mobile ===== */
@media (max-width: 900px) {
    .row-footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    /* Center the logo */
    .col .logo {
      margin-left: 0;          /* remove the -300px offset */
      margin-bottom: 10px;
      display: block;
      margin-right: auto;
      margin-left: auto;
    }
  
    /* Center all columns (Services & Links) */
    .col {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
      padding: 0;
    }
  
    .col .links a {
        display: block;
        margin: 5px 0;
      }
  }

 
  @media (min-width: 901px) {
    .row-footer {
        display: flex;
        align-items: flex-start;
    }

    /* Center the two columns as a group */
    .center-columns {
        display: flex;
        gap: 50px; /* space between Services and Links */
        justify-content: center;
    }
}


/* Scroll Down */

 /* Hidden state before scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px); /* Slide up effect */
    transition: all 0.9s ease-out;
}

/* Active state when visible in viewport */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

  
 /* Milad Signature */

.developer-footer {
    text-align: left; /* center it horizontally */
    margin-left: 20px;
}

.developer-footer a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.developer-footer a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.developer-footer a:hover {
    transform: scale(1.1);
}

/* Center the person in the left image — desktop only */
@media (min-width: 769px) {
    .team-member:first-child img {
      object-position: 45% center !important; /* tweak until perfectly centered */
    }
  }
  







  /* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); /* semi-transparent background */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: #808000;
    font-family: "Philosopher", sans-serif;
}

.modal-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.close:hover {
    color: black;
}
