body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5; /* light background */
    color: #272527 !important; /* Light text color for readability */
    margin-top: 60px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between; /* Distribute space between the logo and toggle button */
    align-items: center; /* Vertically align both items */
    background-color: rgba(237, 154, 170, 0.9) !important;
    border-radius: 0 0 20px 20px; /* Rounds only the bottom-left and bottom-right corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
    padding: 10px 20px; /* Optional: Adjusts spacing inside navbar */
    
  }
  
  .navbar .navbar-brand {
    color: #ed9aaa !important; /* Ensure the text color is white */
    display: inline-block;
  }
  
  .navbar .navbar-brand:hover {
    
    color: #ffb8c6 !important; /* Optional: Change text color on hover */
    transition: 0.2s ease-in-out !important;
  }

  .navbar-navbar {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    text-decoration: none;
  }


  





/* Style for the slideshow container */
.slideshow-container {
    width: 100%;          /* Make the container take full width */
    max-width: 1200px;    /* Set a max-width so it doesn't grow too large */
    margin: auto; 
    
    height: 100vh;
    margin-top: 2%; 
    margin-bottom: 5%;       /* Center the container */
    position: relative;
    
   
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Fade and slide transition */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Add subtle shadow behind images */
    
       
}


/* Slideshow image styles */
.mySlides {
    display: none;            /* Initially hide all images */
    width: 100%;
    height: auto;
    opacity: 0;
    position: absolute;
    animation: fadeSlide 6s infinite;
    
}

/* Image style */
.slide-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Active image (visible) */
.mySlides.active {
    display: block;        /* Make the active image visible */
    opacity: 1;            /* Fade the active image in */
    animation: fadeSlide 6s infinite;
}


/* Keyframes for smooth fading and sliding effect */
@keyframes fadeSlide {
    0% { opacity: 0; transform: translateX(-100%) scale(1); }  /* Entering from left */
    15% { opacity: 1; transform: translateX(0) scale(1); }     /* Fully visible */
    75% { opacity: 1; transform: translateX(0) scale(1); }     /* Stay visible */
    85% { opacity: 0.7; transform: translateX(10%) scale(0.95); } /* Start fading out & shrinking */
    100% { opacity: 0; transform: translateX(100%) scale(0.9); } /* Exit smoothly to right */
}

/* Arrows styling (previous and next buttons) */
.prev, .next {
    position: absolute;
    top: 50%;
    width: 40px;         /* Set a fixed width */
    height: 40px;        /* Set a fixed height to ensure circle shape */
    padding: 10px;       /* Adjust padding to fit the content within the circle */
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background */
    border: none;
    border-radius: 50%;  /* Ensure circle shape */
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;  /* Remove underline */
    display: flex;          /* Center the icon inside */
    align-items: center;    /* Vertically center the icon */
    justify-content: center; /* Horizontally center the icon */
}

/* Left arrow */
.prev {
    left: 20px;
}

/* Right arrow */
.next {
    right: 20px;
}

/* Hover effects */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
    transform: scale(1.1); /* Slightly enlarge the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
}

/* Focus effect for accessibility (keyboard navigation) */
.prev:focus, .next:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6); /* White outline when focused */
}




/* Responsive design */
@media screen and (max-width: 768px) {
    .prev, .next {
        font-size: 18px;
        padding: 12px 16px;
    }
    .dot {
        height: 10px;
        width: 10px;
    }
}



.header-image {
    width: 100%;
    max-height: 400px; /* Adjust height if needed */
    object-fit: cover; /* Ensures the image covers the space properly */
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for a nice effect */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s ease-in-out;
}

/* Smooth Hover Effect */
.header-image:hover {
    transform: translateY(-5px) scale(1.02); /* Moves up slightly & grows a bit */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Slightly stronger shadow */
}

.navbar-logo {
    height: 10px; /* Increase size */
    width: auto;  /* Maintain aspect ratio */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Smooth transitions */
}

.navbar-logo:hover {
    transform: scale(1.15); /* Slight zoom effect */
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8)); /* White glow effect */
}


/* Navbar Links */
.navbar-nav .nav-link {
    color: #c398a2 !important;
    font-size: 20px; /* Bigger font size */
    font-weight: bold; /* Bold letters */
    
    transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #c398a2 !important;
   
    transform: translateX(5px); /* Moves to the right */
}

/* Ensure proper margin for 'album' as well */
.navbar-nav {
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 0px;
}


/* Sidebar for Contact Info - Positioned below the Navbar */
.contact-info-sidebar {
    position: absolute;
    top: 130px; /* Adjust this to be just below the navbar */
    left: 20px; /* Place it on the left side */
    width: 31.25rem; /* 500px */
    padding: 20px;
    background-color: #f5f5f5; /* Semi-transparent background */
    border-radius: 8px; /* Rounded corners */
    border: 3px solid #c398a2; /* Add border with the given color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft box shadow */
    z-index: 1000;
    
}

/* Text and header styling inside contact info */
.contact-info-sidebar h4 {
    color: #ed9aaa; /* Color for header */
    font-size: 2.3rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Apply shadow to header text */
}

.contact-info-sidebar p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #453133; /* Set color for paragraph text */
}


/* About Me Section - Positioned below Contact Info */
.about-me-section {
    position: absolute;
    top: 30.45rem;      /* 460px / 16 */
    left: 1.25rem;      /* 20px / 16 */
    width: 37.5rem;     /* 600px / 16 */
    height: 50rem;      /* 800px / 16 */
    padding: 1.25rem;   /* 20px / 16 */
    background-color: #f5f5f5; /* Light pinkish background */
    border-radius: 8px;
    border: 3px solid #c398a2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-me-section h4 {
    color: #ed9aaa; /* Color for header */
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.about-me-section p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #453133; /* Set color for paragraph text */
}




/* Hide About Me Section on Mobile */
@media (max-width: 768px) {
    .about-me-section {
        display: none;
    }
}








.header-image-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 70px;
    text-align: center;
    
}

.header-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s ease-in-out;
}

.header-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.navbar-logo:hover {
    transform: scale(1.15);
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8));
}

.navbar-nav .nav-link {
    color: #ed9aaa !important; /* Color for header */

    font-size: 22px;
    font-weight: bold;
    margin-left: 40px;
    transition: 0.3s ease-in-out;
}


.navbar-nav {
    margin-left: 10px;
    margin-right: 20px;
}



.image-container {
    position: absolute;
    top: 130px;
    right: 20px;
    width: 600px;
    height: 1150px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    z-index: 1000;
    border: 3px solid #c398a2; /* Add border with the given color */
}

.image-container img {
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 767px) {
    .contact-info-sidebar {
        
        right: 0;
        top: 0;
        position: relative;
        margin-bottom: 20px;
        margin-top: 10px;
        width: 90%;
        height: 50%;
        max-height: 50%;
        max-width: 90%;
    }

    .image-container {
        display: none;
        top: 0;
        position: relative;
        margin-top: 0px;
        margin-bottom: 5px;
        margin-left: 20px ;
        width: 100%;
        max-width: 100%;
        
        
        
    }

    .header-image-container {
        display: none;
    }

    .image-container img {
        
        width: 100%;
        max-width: 100%;
        
        
    }

    .slideshow-container {
        
        max-width: 100%;
        margin-left: 10px;
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
        max-height: 100%;
        min-width: 100%;
        
       
    
    }
    .mySlides {
        max-width: 100%;
        
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
        max-height: 100%;

    }

    .slide-img {
        max-width: 100%;
        
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
        max-height: 100%;

    }

    .header-image-container{
        margin-left: 10px;
    }
    .footer {
        display: none;
    }
}



/* Style for social media icons */
.social-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Properly align logo and social media icons to the left */
.navbar .d-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0; /* Ensure no margin */
}

/* Position the social media icons to the left side of the navbar */
.navbar .container-fluid {
    display: flex;
    justify-content: space-between; /* Space between logo/social icons and the other navbar content */
}

.social-icons {
    display: flex;
    gap: 10px; /* Space between icons */
    justify-content: flex-start; /* Align icons to the left */
}

/* Ensure the navbar items (like Gallery) stay on the right */
.navbar-nav {
    margin-left: auto; /* Push navbar items to the right */
}

/* Responsive layout for better mobile display */
@media (max-width: 768px) {
    .navbar .d-flex {
        flex-direction: row; /* Keep the logo and icons in a row on mobile */
        gap: 4px; /* Reduce spacing */
    }

    .social-icons {
        margin-top: 0;
        justify-content: flex-start; /* Keep the icons aligned to the left */
    }
}




.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-button {
    font-weight: bold;
    color: #ed9aa0; /* Orange shade */
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    font-size: 1.2rem;
    
}

.contact-button:hover {
    color: #c398a2;
    

}
* {
    box-sizing: content-box;
}

/* Custom styles for rounded border around the service content */
.service-content {
    
    margin-top: 20px;
    background-color: #f5f5f5; /* Semi-transparent background */
    border-radius: 8px; /* Rounded corners */
    border: 3px solid #c398a2; /* Add border with the given color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft box shadow */
}




/* Container to center the buttons directly under video content */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Aligns buttons to the top */
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    margin-top: 20px; /* Small gap between video and buttons */
}

/* Button Styles */
.btn {
    background-color: #ed9aaa;
    color: #ebeff3;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 10px 0; /* Reduce space between buttons */
    margin-bottom: 30px;
    width: 300px;
    max-width: 80%;
    text-align: center;
}

/* Hover Effect */
.btn:hover {
    transform: scale(1.1);
    background-color: #ed9aaa;

    box-shadow: 0 12px 24px rgba(195, 152, 162, 0.2);
}

/* Ensure no extra space below video */
video, iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Container to maintain 16:9 aspect ratio */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Maximum width on large screens */
    margin: 40px auto 0; /* Add top margin to create space between navbar and video */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px; /* Optional: Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Optional: Shadow effect */
    
}

/* Video inside container */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and crop if needed */
}

/* Prevent cropping and ensure full width on mobile */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        padding-top: 56.25%; /* Maintain aspect ratio on mobile */
    }

    .video-container video {
        object-fit: contain; /* Prevent cropping and maintain aspect ratio without cropping */
    }
}


/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    
    
    color: #1c1c1c;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    z-index: 1000; /* Ensure it stays on top */
}

.footer p {
    margin: 0;
}

.footer span {
    color: #ed9aaa;

}



.gallery_ {
    font-weight: bold;
    color: #ed9aa0; /* Orange shade */
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    font-size: 1.2rem;
    margin-left: 15px;
    
}


.gallery_:hover {
    color: #c398a2;
  }


 /* For Tablets and Small Laptops */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        display: none;
    }

    .slideshow-container {
        width: 100%;
        height: auto;
        margin-bottom: 20px; /* Add margin to push the content below */
    }

    .contact-info-sidebar,
    .about-me-section {
        
        display: none;
    }

    .image-container {
        display: none;
    }
    .footer {
        display: none;
    }
    
}

/* For Larger Tablets and Small Laptops */
@media (min-width: 1025px) and (max-width: 1366px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slideshow-container {
        width: 100%;
        height: auto;
        margin-bottom: 30px; /* Add more margin for larger screens */
    }

    .contact-info-sidebar,
    .about-me-section {
        display: none;
    }

    .image-container {
        display: none;
    }

    .footer {
        display: none;
    }
    
}



@media (max-width: 2300px) {
    .contact-info-sidebar {
        
        right: 0;
        top: 0;
        position: relative;
        margin-bottom: 20px;
        margin-top: 10px;
        width: 90%;
        height: 50%;
        max-height: 50%;
        max-width: 90%;
    }

    .image-container {
        display: none;
        top: 0;
        position: relative;
        margin-top: 0px;
        margin-bottom: 5px;
        margin-left: 20px ;
        width: 100%;
        max-width: 100%;
        
        
        
    }
    .about-me-section{
        display: none;
    }

    .header-image-container {
        display: none;
    }

    .image-container img {
        
        width: 100%;
        max-width: 100%;
        
        
    }

    .slideshow-container {
        
        max-width: 100%;
        margin-left: 10px;
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
        max-height: 100%;
        min-width: 100%;
        
       
    
    }
    .mySlides {
        max-width: 100%;
        
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
        max-height: 100%;

    }

    .slide-img {
        max-width: 100%;
        
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
        max-height: 100%;

    }

    .header-image-container{
        margin-left: 10px;
    }
    .footer {
        display: none;
    }
}
