@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500&display=swap');



/* Navbar Styling */
.navbar-custom {
    background: rgba(255, 255, 255, 0.3); /* Glass effect by default */
    backdrop-filter: blur(10px);
    box-shadow: none;
    transition: all 0.4s ease-in-out;
}
.header::after {
    content: "";
    display: block;
    height:0; /* height of carousel */
    background: transparent;
}
body:not(:has(header:hover)) .navbar-custom {
    background: #F4C2C2; /* Solid background when header is no longer in view */
    backdrop-filter: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.navbar-brand {
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
}
.navbar-brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: #007BFF !important;
}
.navbar-toggler {
    border: none;
    outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}










/* ====== CAROUSEL CAPTIONS ====== */
.carousel-caption {
    text-align: center;
}
.carousel-caption h5 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* large headline */
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-in-out;
}
.carousel-caption p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out;
}
/* ====== RESPONSIVE FONT SIZES ====== */
@media (max-width: 992px) { /* Tablets */
    .carousel-caption h5 {
        font-size: 2.2rem;
    }
    .carousel-caption p {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) { /* Mobile landscape */
    .carousel-caption h5 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}
@media (max-width: 576px) { /* Mobile portrait */
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
}
/* ====== ANIMATION ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}








/*ABOUT US*/
.about-collage {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-center {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    z-index: 2;
    max-width: 600px;
    animation:float 3s ease-in-out infinite;
}
.about-center h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}
.about-center p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

/* Collage Images */
.collage-img {
    position: absolute;
    width: 120px;
    height: 120px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positions */
.top-left {
    top: -40px;
    left: -250px;
    width:40%;
    height:100%;
}
.top-right {
    top: -40px;
    right: -250px;
    width:40%;
    height:100%;
}
.bottom-left {
    bottom: -230px;
    left: -250px;
    width:100%;
    height:60%;

}
.bottom-right {
    bottom: -230px;
    right: -250px;
    width:50%;
    height:60%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-collage {
        padding: 20px;
    }
    .collage-img {
        width: 90px;
        height: 90px;
    }
    .top-left, .top-right, .bottom-left, .bottom-right {
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        position: static;
        margin: 10px;
    }
    .about-collage {
        flex-direction: column;
        align-items: center;
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}







/*OUR SERVICES*/
#services {
    position: relative;
    width: 100%;
    height: 100%; /* Let the section height depend on the image */
    overflow: hidden;
    margin-top:400px;
}

#services .service-img {
    width: 100%;
    height: 90%; /* Maintain image aspect ratio */
    display: block;
}

#services .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Make overlay cover full image width */
    height: 90%; /* Match image height */
    background: rgba(255, 182, 193, 0.3); /* Soft pink with transparency */
    backdrop-filter: blur(10px); /* Glass blur effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Heading Style */
#services .service-overlay h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

/* Paragraph Style */
#services .service-overlay p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fdfdfd;
    max-width: 500px;
    margin: 0 auto;
    font-family:'Roboto', sans-serif;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    #services .service-overlay h2 {
        font-size: 2.5rem;
    }
    #services .service-overlay p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    #services .service-overlay {
        padding: 30px 15px;
    }
    #services .service-overlay h2 {
        font-size: 2rem;
    }
    #services .service-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #services .service-overlay h2 {
        font-size: 1.8rem;
    }
    #services .service-overlay p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}







/* Gallery Section */
#gallery {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

#gallery .gallery-heading h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

#gallery .gallery-heading p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family:'Roboto', sans-serif;
}

/* Gallery Grid - Smaller Images */
#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Smaller columns */
    gap: 10px; /* Reduced gap */
}

#gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Slightly smaller rounded corners */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-left:50px;
    height: 500px; /* Fixed height for each image */
}

#gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop to fill */
    display: block;
    transition: transform 0.4s ease;
}

#gallery .gallery-item:hover img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* View Full Gallery Button */
#gallery .view-more {
    margin-top: 25px;
}

#gallery .gallery-btn {
    display: inline-block;
    background-color: #ff6f91; /* Soft pink */
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#gallery .gallery-btn:hover {
    background-color: #ff3e6c; /* Darker pink on hover */
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #gallery .gallery-heading h2 {
        font-size: 2.3rem;
    }
    #gallery .gallery-heading p {
        font-size: 1rem;
    }
    #gallery .gallery-item {
        height: 140px; /* Smaller height on tablet */
    }
}

@media (max-width: 480px) {
    #gallery .gallery-heading h2 {
        font-size: 2rem;
    }
    #gallery .gallery-heading p {
        font-size: 0.95rem;
    }
    #gallery .gallery-item {
        height: 120px; /* Smaller height on mobile */
    }
    #gallery .gallery-btn {
        font-size: 0.95rem;
        padding: 8px 20px;
    }
}




/*RATE US*/
.star {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
}
.star.selected {
    color: #ff6f91;
}
.review {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-family: 'Roboto', sans-serif;
}
.review-stars {
    color: #ff6f91;
    font-size: 18px;
    margin-bottom: 5px;
}










/* Footer Styling */
footer#ContactUs {
    background-color: #ffccd5; /* Soft pink background */
    color: #333; /* Darker text for contrast */
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

footer#ContactUs .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer#ContactUs h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: left; /* Align heading to left */
    font-family:'Playfair Display', serif;
}

footer#ContactUs .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left; /* Align all content to left */
}

footer#ContactUs .col-md-4 {
    flex: 1 1 300px; /* Responsive column */
    margin-bottom: 20px;
}

footer#ContactUs h6 {
    font-size: 1.5rem;
    color: #ff6f91; /* Slightly darker pink for headings */
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

footer#ContactUs p {
    font-size: 1rem;
    color: #555; /* Slightly muted text color */
    line-height: 1.6;
    font-family:'Roboto', sans-serif;
}

footer#ContactUs a {
    color: #ff6f91; /* Pink links */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer#ContactUs a:hover {
    color: #ff3e6c; /* Darker pink on hover */
    text-decoration: underline;
}

footer#ContactUs p.mt-3 {
    border-top: 1px solid #e5e5e5;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.95rem;
    color: #777;
    text-align: left; /* Align copyright to left */
}


