  html {
    font-size: 16px;
  }


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Example font */
    background-color: #1c1c1c; /* Set the background color */
    color: #f8f9fa; /* Optional: Set a contrasting text color for better readability on the dark background */
    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    box-sizing: border-box; /* Ensure padding and border are included in element's total width and height */
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.site-wrapper {
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack children vertically */
    min-height: 100vh; /* Ensure it takes at least the full viewport height */
}

.main-content-wrapper {
    flex-grow: 1;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

.main {
    margin-left: -200px;
    font-size: 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    background-color: transparent; /* Start with a transparent background */
    transition: background-color 0.3s ease; /* Add a smooth transition for the background color */
    box-shadow: none; /* Initially, no shadow */
}

.nav-icon {
    width: 50px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align the icon vertically with the text */
    margin-right: 20px; /* Add some space between the icon and the text */
    margin-left: 325px;
}

.navbar-brand {
    color: white !important;
}

.navbar-collapse .navbar-nav .nav-link {
    color: white;
}

.navbar-collapse .navbar-nav .nav-link:hover {
    color: royalblue;
    font-size: 24px;
    font-weight: bold;
}

/* Add a class to the navbar when scrolled */
.navbar.scrolled {
    background-color: #1c1c1c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow when scrolled */
}


    /*Main Text*/
    /* --- Hero Section Styles --- */
    .hero-section {
        background-image: url('/images/HomeBG.jpg');
        background-size: cover;
        background-position: center 77%; /* Your desired specific vertical position */
        background-repeat: no-repeat;
        min-height: 80vh;
        width: 100%; /* Ensures it takes full width */
        position: relative; /* Crucial for .hero-text absolute positioning */
        overflow: hidden; /* Important to clip content that goes beyond the bounds */
        margin-top: 0px; /* Explicitly setting margins to 0 */
        margin-bottom: 0px; /* Explicitly setting margins to 0 */
    }

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(128, 128, 128, 0.1); /* Example: Semi-transparent black for a dark tone */
        z-index: 1; /* Ensure the overlay is above the background image */
    }

    /* If you have text or other elements within the hero image that need to be above the overlay */
    .hero-section > * {
        position: relative;
        z-index: 2;
    }

    .hero-text {
        text-align: left;
        position: absolute;
        top: 50%; /* Center vertically */
        left: 40%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Adjust for element's own size */
        color: white;
        z-index: 2;
        padding: 20px;
        max-width: 80%;
        box-sizing: border-box;
    }

    .hero-text h1 {
        font-size: 2.0em;
        margin-bottom: 30px;
        text-align: left;
        font-family: 'Cinzel';
    }

    .hero-text p {
        font-size: 4.0em;
        margin-bottom: 90px;
        text-align: left;
        font-family: 'Allura';
    }

    .hero-text .description-line {
        font-size: 2.0em;
        text-align: left;
        margin-bottom: 10px;
        font-family: 'DidactGothic';
    }

    /*Secondary Container Text*/
    .secondary-content-section {
        padding: 40px 20px;
        background-color: #1c1c1c; /* If you want this section to stand out, you might choose a slightly different background here, e.g., #2a2a2a */
        display: flex;
        flex-direction: column; /* Default to column for small screens (image on top, text below) */
        align-items: center; /* Center items horizontally when in column layout */
        gap: 30px; /* Space between the image and the text block */
        max-width: 1200px;
        margin: 0px auto;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: #f8f9fa; /* Ensure text color is readable on this section's background */
    }

.secondary-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    flex-shrink: 0; /* Prevent image from shrinking too much in flex container */
    object-fit: cover; /* Ensures image covers its area without distortion */
    /* You might want a specific max-width for smaller screens too */
    max-width: 40%; /* Image takes up roughly 40% of the section's width */
    min-width: 250px; /* Ensure image doesn't get too small */
}

.secondary-text {
    padding-top: 0;
    margin-top: 0;
    text-align: center; /* Default text alignment for smaller screens */
    flex-grow: 1; /* Allow text block to grow and take available space */
    max-width: 55%; /* Text takes up roughly 55% of the section's width */
}

    .secondary-text h2 {
        font-size: 4rem;
        font-family: 'GreatVibes';
        margin-top: 0px;
        margin-bottom: 140px;
        color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
    }

    .secondary-text p {
        font-size: 1.5rem;
        font-family: 'DidactGothic';
        line-height: 1.6;
        color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
        margin-bottom: 10px;
    }

    .secondary-text .second-line {
        font-size: 2rem;
        font-family: 'DidactGothic';
        line-height: 1.6;
        color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
        margin-bottom: 10px;
    }


        .secondary-content-section {
            flex-direction: row; /* Layout image and text side-by-side */
            justify-content: center; /* Center the image and text block */
            align-items: center; /* Vertically align image and text to their centers */
            text-align: left; /* This property primarily affects the container, not direct text children */
            gap: 50px; /* Increased gap for more space between image and text */
            padding: 10px 40px; /* More padding for larger screens */
        }



   

    /* --- About Me Section Styles --- */

    .about-section {
        background-image: url('/images/AboutMe/CameraAM.jpg');
        background-size: cover;
        background-position: center 52%; /* Your desired specific vertical position */
        background-repeat: no-repeat;
        min-height: 60vh;
        width: 100%; /* Ensures it takes full width */
        position: relative; /* Crucial for .hero-text absolute positioning */
        overflow: hidden; /* Important to clip content that goes beyond the bounds */
        margin-top: 100px; /* Explicitly setting margins to 0 */
        margin-bottom: 50px; /* Explicitly setting margins to 0 */
    }

    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(168, 145, 19, 0.1); /* Example: Semi-transparent black for a dark tone */
        z-index: 1; /* Ensure the overlay is above the background image */
    }

    /* If you have text or other elements within the hero image that need to be above the overlay */
    .about-section > * {
        position: relative;
        z-index: 2;
    }

.about-text {
    text-align: left;
    /*position: absolute;*/
    top: 10%; /* Center vertically */
    left: 8%; /* Center horizontally */
    /*transform: translate(-40%, -0%);*/ /* Adjust for element's own size */
    color: white;
    z-index: 2;
    padding: 20px;
    max-width: 80%;
    box-sizing: border-box;
    text-shadow: -0.6px -0.6px 0 #000, 0.6px -0.6px 0 #000, -0.6px 0.6px 0 #000, 0.6px 0.6px 0 #000;
}

    .about-text h1 {
        font-size: 3.0em;
        margin-bottom: 55px;
        text-align: left;
        font-family: 'DidactGothic';
    }

    .about-text p {
        font-size: 1.5em;
        margin-bottom: 0px;
        text-align: justify;
        font-family: 'DidactGothic';
    }

    .about-text .about-line {
        font-size: 1.5em;
        text-align: justify;
        margin-top: 50px;
        margin-bottom: 10px;
        font-family: 'DidactGothic';
    }


    /*About Me Secondary Container Text*/
    .about-testimonials-container .testimonials-heading {
        text-align: left;
        font-family: 'DidactGothic';
        margin-bottom: 50px;
        padding-left: 280px;
    }

    .about-secondary-content-section {
        padding: 40px 20px;
        background-color: #1c1c1c; /* If you want this section to stand out, you might choose a slightly different background here, e.g., #2a2a2a */
        display: flex;
        flex-direction: column; /* Default to column for small screens (image on top, text below) */
        align-items: center; /* Center items horizontally when in column layout */
        gap: 30px; /* Space between the image and the text block */
        max-width: 1200px;
        margin: 50px auto;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: #f8f9fa; /* Ensure text color is readable on this section's background */
    }

    .about-secondary-image {
        height: 300px;
        width: 300px;
        object-position: center 20%;
        transform: scale(0.65);
        border-radius: 25%;
        flex-shrink: 0; /* Prevent image from shrinking too much in flex container */
        object-fit: cover; /* Ensures image covers its area without distortion */
        /* You might want a specific max-width for smaller screens too */
        max-width: 300px; /* Example: limit max width on smaller screens */
    }

    .about-secondary-text {
        padding-top: 0;
        margin-top: 0;
        text-align: center; /* Default text alignment for smaller screens */
        flex-grow: 1; /* Allow text block to grow and take available space */
    }

    .about-secondary-text .about-testimonial {
        font-size: 1.07rem;
        font-family: 'DidactGothic';
        line-height: 1.6;
        text-align: left;
        color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
        margin-bottom: 10px;
    }

    .about-secondary-text .about-testimonial-signature {
        font-size: 1.09rem;
        font-weight: bold;
        font-family: 'DidactGothic';
        line-height: 1.6;
        text-align: left;
        color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
        margin-bottom: 10px;
    }

        .about-secondary-content-section {
            flex-direction: row; /* Layout image and text side-by-side */
            justify-content: center; /* Center the image and text block */
            align-items: center; /* Vertically align image and text to their centers */
            text-align: left; /* This property primarily affects the container, not direct text children */
            gap: 50px; /* Increased gap for more space between image and text */
            padding: 10px 40px; /* More padding for larger screens */
        }

        .about-secondary-image {
            max-width: 40%; /* Image takes up roughly 40% of the section's width */
            min-width: 250px; /* Ensure image doesn't get too small */
        }

        .about-secondary-text {
            max-width: 55%; /* Text takes up roughly 55% of the section's width */
            text-align: center; /* ** Crucial: Align text left within its block on larger screens ** */
        }
   

    /*Portfolio Image Updates*/
.portfolio-image-display {
    width: 100%; /* Image takes 100% of its parent column's width */
    height: auto; /* Maintain aspect ratio */
    max-height: 250px; /* Set a maximum height to prevent overly tall images */
    object-fit: contain; /* Scales the image to fit within the dimensions, preserving aspect ratio */
    display: block;
    background-color: #1c1c1c;
    margin: 0 auto;
}

.portfolio-gallery {
    margin-top: 100px;
}

.portfolio-categories {
    margin-top: 50px;
}

@media (min-width: 992px) { /* For large desktops */
    .portfolio-gallery .col-md-4 {
        flex: 0 0 auto; /* Override Bootstrap's flex basis */
        width: 25%; /* Make it 4 columns per row */
    }
}

/* Ensure lightbox image fits viewport */
#lightboxImage {
    max-width: 95vw; /* Maximum width of 95% of the viewport width */
    max-height: 90vh; /* Maximum height of 90% of the viewport height */
    width: auto; /* Allow width to adjust automatically */
    height: auto; /* Allow height to adjust automatically */
    object-fit: contain; /* Ensure the entire image is visible, even if it leaves empty space */
}

/* Lightbox Navigation Buttons */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 1060; /* Higher than modal backdrop */
    font-size: 2rem;
    border-radius: 5px;
    opacity: 0.7; /* Slightly transparent */
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

    .lightbox-nav-btn:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.7);
    }

.lightbox-prev-btn {
    left: 10px;
}

.lightbox-next-btn {
    right: 10px;
}

/* Adjust modal content for full height and flex alignment */
#portfolioLightboxModal .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 1rem); /* Adjust modal height to be almost full viewport height */
}

#portfolioLightboxModal .modal-content {
    flex-grow: 1; /* Allow content to grow */
    display: flex;
    flex-direction: column; /* Arrange header, body, footer vertically */
    justify-content: center;
}

#portfolioLightboxModal .modal-body {
    flex-grow: 1; /* Allow body to take available space */
    position: relative; /* For absolute positioning of nav buttons */
    padding: 1rem; /* Add some padding around the image */
}


/* Pricing Page Styles */
.pricing-title {
    font-family: 'Cinzel', serif; /* Or another suitable heading font */
    color: #f8f9fa; /* Light text on dark background */
    margin-bottom: 3rem;
    padding-top: 5rem; /* Space from top of page */
}

.pricing-card {
    background-color: #2a2a2a; /* Slightly lighter background than body for contrast */
    border: 1px solid #3a3a3a; /* Subtle border */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-height: 120px; /* Ensure cards have a consistent minimum height */
    max-width: 450px; /* Adjust this value to make cards narrower or wider */
    margin: 0 auto; /* This will center the card within its column */
}

.pricing-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* More prominent shadow on hover */
}

.pricing-icon img {
    width: 120px; /* Adjust icon size as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.pricing-text {
    color: #f8f9fa; /* Text color for pricing details */
}

.pricing-heading {
    font-family: 'DidactGothic', sans-serif; /* Consistent font for headings */
    font-size: 1.3rem; /* Make heading prominent */
}

.pricing-description {
    font-family: 'DidactGothic', sans-serif; /* Consistent font for descriptions */
    font-size: 1rem;
    line-height: 1.4;
}

/* Ensure pricing container has enough top margin */
.pricing-container {
    padding-top: 80px; /* Adjust based on your fixed navbar height */
}


/* Partnerships Page Styles */
.partnerships-container {
    padding-top: 80px; /* Adjust based on your fixed navbar height */
    color: #f8f9fa; /* Ensure text is readable on dark background */
}

.partnerships-title {
    font-family: 'DidactGothic', serif; /* Consistent heading font */
    margin-bottom: 1.5rem;
    padding-top: 3rem; /* Space from top of container/navbar */
}

.partnership-description {
    font-family: 'DidactGothic', sans-serif; /* Consistent body font */
    font-size: 1.25rem; /* Slightly larger text for readability */
    line-height: 1.6;
    max-width: 1500px; /* Limit paragraph width for better readability */
    margin-left: auto;
    margin-right: auto; /* Center the paragraph if max-width is applied */
    margin-top: 40px;
}

.partner-logo {
    max-width: 300px; /* Adjust this to control the size of your logo */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
    margin: 3rem auto 0 auto; /* Top margin for spacing, auto left/right for centering */
    border: 1px solid #3a3a3a; /* Optional: subtle border around the logo */
    border-radius: 15px; /* Optional: slight rounded corners for the logo */
    padding: 10px; /* Optional: padding inside the logo's border */
    background-color: rgba(255, 255, 255, 0.05); /* Optional: slight background for logo if it's transparent */
}

/* Stranger Sessions Page Styles */
.stranger-sessions-container {
    padding-top: 80px; /* Adjust based on your fixed navbar height */
    color: #f8f9fa; /* Ensure text is readable on dark background */
}

.stranger-sessions-title {
    font-family: 'DidactGothic', serif; /* Consistent heading font */
    margin-bottom: 2rem;
    padding-top: 3rem; /* Space from top of container/navbar */
    font-size: 3.5rem; /* Large title */
}

/* Carousel Specific Styles */
#strangerSessionsCarousel {
    max-width: 500px; /* Max width for the carousel */
    margin: 0 auto; /* Center the carousel */
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden; /* Ensures corners are clipped */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}


.carousel-item img.carousel-image {
    height: 800px; /* Fixed height for carousel images */
    transform: scale(0.95);
    object-fit: cover; /* Ensures image covers the area, cropping if needed */
    object-position: center; /* Center the image within its frame */
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for caption */
    padding: 10px 15px;
    border-radius: 5px;
    bottom: 20px; /* Position caption slightly above bottom edge */
    width: 80%; /* Limit caption width */
    left: 50%;
    transform: translateX(-50%);
}

    .carousel-caption h5 {
        font-family: 'DidactGothic', sans-serif;
        font-size: 1.5rem;
        color: white;
    }

/* Heading for "What is a Stranger Session?" */
.what-is-heading {
    font-family: 'Cinzel', serif; /* Consistent heading font */
    color: #f8f9fa;
    margin-top: 4rem; /* Space below carousel */
    font-size: 2.5rem;
}

/* Paragraph text for Stranger Sessions description */
.stranger-session-paragraph {
    font-family: 'DidactGothic', sans-serif; /* Consistent body font */
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly lighter text for readability */
}

/* Call to action text */
.call-to-action-text {
    font-family: 'DidactGothic', sans-serif;
    font-size: 1.3rem;
    color: #f8f9fa;
    margin-bottom: 1.5rem;
}

/* Adjust button styles if needed, using your existing .button class */
.signup-button {
    /* Uses .button class defined in site.css */
    /* You can override or add specific styles here if needed */
    padding: 15px 30px; /* Larger padding for a prominent button */
    font-size: 1.4rem;
    background-color: royalblue; /* Example: a distinct color for this button */
}

    .signup-button:hover {
        background-color: #004d99; /* Darker hover for the signup button */
    }

.Wedding-image-padding {
    padding-top: 150px; /* Adjust the value as needed */
}

/* Contact Page Hero Section Styles */
.contact-hero-section {
    background-image: url('/images/HomeBG.jpg');
    background-size: cover;
    background-position: center 95%;
    background-repeat: no-repeat;
    min-height: 40vh; /* Adjust height as needed, e.g., 50vh, 60vh */
    width: 100%;
    position: relative; /* Needed for overlay and text positioning */
    display: flex; /* Use flexbox to center content */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    text-align: center; /* Ensure text inside is centered */
    color: white; /* Default text color for overlay */
    margin-top: 150px; /* Ensure no top margin for full width at top of page */
}

    .contact-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
        z-index: 1;
    }

    .contact-hero-text {
        position: relative; /* Position above the overlay */
        z-index: 2;
        padding: 20px;
        max-width: 90%; /* Limit text width on very wide screens */
    }

    .contact-hero-text h1 {
        font-family: DidactGothic, serif; /* Or your preferred heading font */
        font-size: 3.5em; /* Large heading */
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .contact-hero-text .sub-text {
        font-family: 'DidactGothic', sans-serif; /* Or your preferred body font */
        font-size: 1.5em;
        opacity: 0.9;
    }

    /* Specific font for the accent words */
    .contact-hero-text .accent-font {
        font-family: 'Allura', cursive; /* Or 'GreatVibes', or any other accent font you like */
        font-size: 1.2em; /* Make it slightly larger than surrounding text */
        color: royalblue; /* Optional: A distinct color for the accent words */
        /* You might need to adjust font-size based on the chosen font to make it look right */
    }

    /* Adjust contact container padding to ensure it's below the hero section */
    .contact-container {
        padding-top: 50px; /* Adjust as needed, should be below the hero section now */
    }

    .contact-info-line {
        font-size: x-large;
    }

/* Privacy Policy Page Styles */
.privacy-container {
    padding-top: 80px; /* Adjust based on fixed navbar height */
    color: #f8f9fa; /* Light text on dark background */
    max-width: 900px; /* Limit content width for readability */
    margin-left: auto;
    margin-right: auto;
}

.privacy-title {
    font-family: 'Cinzel', serif; /* Consistent heading font */
    font-size: 3rem;
    margin-bottom: 2rem;
}

.privacy-content p,
.privacy-content li {
    font-family: 'DidactGothic', sans-serif; /* Consistent body font */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0; /* Slightly lighter text for body */
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.privacy-subtitle {
    font-family: 'DidactGothic', sans-serif; /* Consistent sub-heading font */
    font-size: 1.8rem;
    color: #f8f9fa;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content a {
    color: royalblue; /* Link color */
    text-decoration: underline;
}

    .privacy-content a:hover {
        color: #004d99;
    }


.title_container {
    margin-top: 100px;
    margin-bottom: 75px;
    font-family: DidactGothic;
}

    .button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.2em;
        text-decoration: none;
        color: white;
        background-color: #007bff; /* Adjust button color */
        border-radius: 5px;
        margin-top: 20px;
    }

    .button:hover {
        background-color: #0056b3; /* Darker shade for hover effect */
    }


    @font-face {
        font-family: 'Cinzel'; /* Choose a name for your heading font */
        src: url('/fonts/Cinzel-VariableFont_wght.ttf') format('truetype'); /* Add other formats for broader browser support */
        font-weight: normal; /* Specify the font weight (e.g., normal, bold, 700) */
        font-style: normal; /* Specify the font style (e.g., normal, italic) */
        font-display: swap; /* Optional: Improves performance by displaying fallback text until the font loads */
    }

    @font-face {
        font-family: 'Allura'; /* Choose a name for your paragraph font */
        src: url('/fonts/Allura-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'GreatVibes'; /* Choose a name for your heading font */
        src: url('/fonts/GreatVibes-Regular.ttf') format('truetype'); /* Add other formats for broader browser support */
        font-weight: normal; /* Specify the font weight (e.g., normal, bold, 700) */
        font-style: normal; /* Specify the font style (e.g., normal, italic) */
        font-display: swap; /* Optional: Improves performance by displaying fallback text until the font loads */
    }

    @font-face {
        font-family: 'DidactGothic'; /* Choose a name for your paragraph font */
        src: url('/fonts/DidactGothic-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    footer {
        flex-shrink: 0; /* Prevents the footer from shrinking */
        /* Add your existing footer styles here, e.g.: */
        background-color: #1c1c1c; /* Example footer background */
        color: white;
        padding: 40px 0;
        text-align: center;
    }

    .social-links a {
        color: white; /* Default gray */
        font-size: 30px; /* Adjust size */
        margin: 0 15px; /* Space between icons */
        transition: color 0.3s ease; /* Smooth hover effect */
    }

    .social-links a:hover .fa-facebook-f {
        color: #3b5998;
        font-size: 48px;
    }
    .social-links a:hover .fa-instagram {
        color: #E1306C;
        font-size: 48px;
    }
    .social-links a:hover .fa-envelope {
        color: blue;
        font-size: 48px;
    }

    :root {
        --bs-navbar-brand-color: white !important;
        --bs-navbar-brand-hover-color: white !important;
    }

/* --- Media Queries... */
@media (max-width: 768px) {

    /* --- 0. CSS Variables (for easy theme/color changes) --- */
    :root {
        /* Global Colors */
        --primary-bg-color: #1c1c1c; /* Darkest background */
        --secondary-bg-color: #2a2a2a; /* Slightly lighter background for cards/sections */
        --light-text-color: #f8f9fa; /* General light text */
        --muted-text-color: #e0e0e0; /* Slightly muted light text */
        --accent-color-blue: royalblue; /* Primary accent blue */
        --accent-color-blue-hover: #004d99; /* Darker blue on hover */
        --border-color: #3a3a3a; /* Subtle border color */
        --shadow-color: rgba(0, 0, 0, 0.5); /* General shadow color */
        /* Bootstrap Overrides (ensure these are loaded after Bootstrap's CSS) */
        --bs-navbar-brand-color: var(--light-text-color);
        --bs-navbar-brand-hover-color: var(--light-text-color);
        --bs-secondary-color: var(--muted-text-color); /* For form placeholders */
    }

    /* --- 1. Global & Base Styles (Mobile-First Defaults) --- */
    html {
        font-size: 14px; /* Base font size for ALL screens by default, adjusted up for desktop */
        position: relative;
        min-height: 100%;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fallback font */
        background-color: var(--primary-bg-color);
        color: var(--light-text-color);
        margin: 0;
        padding: 0;
        box-sizing: border-box; /* Include padding and border in element's total width/height */
        line-height: 1.6; /* Default line height for readability */
    }

    .site-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Ensures content pushes footer to bottom */
    }

    /* General Container Styling (used by .container class from Bootstrap) */
    .container {
        max-width: 100%; /* Default to full width for mobile */
        margin-left: auto;
        margin-right: auto;
        padding: 15px; /* Adjusted padding for mobile */
    }

    /* General Link Styling (if not covered by specific component styles) */
    a {
        color: var(--accent-color-blue);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        a:hover {
            color: var(--accent-color-blue-hover);
            text-decoration: underline;
        }

    /* Utility/Form Styles (from Bootstrap overrides) */
    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

    .form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
        color: var(--bs-secondary-color);
        text-align: end;
    }

    .form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
        text-align: start;
    }

    /* General Button Styling (for .button class) */
    .button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.2em;
        text-decoration: none;
        color: white;
        background-color: #007bff; /* Adjust button color */
        border-radius: 5px;
        margin-top: 20px;
        transition: background-color 0.3s ease;
    }

        .button:hover {
            background-color: #0056b3; /* Darker shade for hover effect */
        }


    /* --- 3. Navigation Bar Styles --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px; /* Consistent navbar height */
        z-index: 1000;
        background-color: transparent;
        transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
        box-shadow: none; /* Initially no shadow */
        padding-left: 5px; /* Default padding for mobile */
        padding-right: 5px; /* Default padding for mobile */
    }

        .navbar.scrolled {
            background-color: var(--primary-bg-color);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow when scrolled */
        }

    .navbar-brand {
        color: var(--light-text-color) !important;
        font-family: 'Cinzel', serif; /* Consistent brand font */
        font-size: 1.1rem; /* Adjusted brand font size for mobile */
        margin-left: 0; /* No extra left margin for brand on mobile */
        display: flex; /* For icon alignment */
        align-items: center; /* Vertically align icon and text */
    }

    .nav-icon {
        width: 40px; /* Adjusted icon size for mobile */
        height: auto;
        margin-right: 10px; /* Adjusted space between icon and brand text for mobile */
        margin-left: 5px;
    }

    /* .main is the container for brand, icon, and toggler button */
    .navbar .main {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Brand/icon left, toggler right on mobile */
        flex-grow: 1; /* Allows .main to take available space */
        font-size: 1.5rem; /* Base font size for brand text, if it's not handled by .navbar-brand */
        margin-left: 0; /* Resetting any negative margin */
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.1); /* Subtle border for toggler */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* White hamburger icon */
    }

    .navbar-collapse {
        background-color: var(--primary-bg-color); /* Background for the collapsed menu */
        position: absolute;
        top: 60px; /* Below the fixed navbar */
        left: 0;
        width: 100%;
        padding: 10px 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1); /* Separator from navbar */
    }

        .navbar-collapse .navbar-nav {
            flex-direction: column; /* Stack nav items vertically on mobile */
            width: 100%; /* Ensure menu takes full width */
        }

            .navbar-collapse .navbar-nav .nav-item {
                margin: 5px 0; /* Adjusted vertical spacing for mobile menu items */
            }

            .navbar-collapse .navbar-nav .nav-link {
                color: var(--light-text-color);
                transition: color 0.2s ease;
                font-size: 1.1rem; /* Default nav link size */
                padding: 10px 15px; /* Larger tap area for mobile links */
                display: block; /* Ensure full width clickable area */
                text-align: right; /* Align dropdown links to the right */
            }

                .navbar-collapse .navbar-nav .nav-link:hover {
                    color: var(--accent-color-blue);
                    font-size: 1.1rem; /* Keep same size on hover for mobile */
                    font-weight: normal; /* No bold on hover for mobile to keep consistent spacing */
                    background-color: rgba(255, 255, 255, 0.05); /* Subtle background on hover */
                }

    /* Navbar specific container adjustments for responsiveness */
    .navbar .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }


    /* --- 4. Hero Sections (Full-Width Background Images with Overlays) --- */

    /* Generic Hero Section Base */
    .hero-section-base {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-top: 0; /* No top margin by default (mobile-first) */
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        min-height: 40vh; /* Default min-height for mobile hero sections */
    }

        .hero-section-base::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Default dark overlay */
            z-index: 1;
        }

        .hero-section-base .hero-text {
            position: relative;
            z-index: 2;
            padding: 10px;
            max-width: 90%; /* Limits text width on smaller screens */
            box-sizing: border-box;
        }

    /* Home Page Hero Section */
    .hero-section {
        background-image: url('/images/HomeBG.jpg');
        background-position: center 77%;
        min-height: 60vh; /* Adjusted for mobile view of home hero */
        justify-content: center; /* Center content horizontally on mobile */
        text-align: center; /* Center text within hero-text div on mobile */
    }

        .hero-section::before {
            background-color: rgba(128, 128, 128, 0.1); /* Specific overlay for Home */
        }

        .hero-section .hero-text {
            margin-left: 0; /* Reset margin for mobile */
            transform: none; /* No transform for centering with flexbox */
            text-align: left;
            position: absolute;
            top: 58%; /* Center vertically */
            left: 35%; /* Center horizontally */
            transform: translate(-35%, -50%); /* Adjust for element's own size */
            color: white;
            z-index: 2;
            padding: 5px;
            max-width: 95%;

        }

            .hero-section .hero-text h1 {
                font-size: 2em; /* Smaller heading for mobile */
                margin-bottom: 15px; /* Adjusted margin */
                font-family: 'Cinzel', serif;
                text-align: left; /* Ensure text is centered on mobile */
            }

            .hero-section .hero-text p { /* This targets the Allura text */
                font-size: 2.8em; /* Adjusted for mobile readability */
                margin-bottom: 20px; /* Adjusted margin */
                font-family: 'Allura', cursive;
                line-height: 1.2;
                margin-bottom: 20px;
                text-align: left; /* Ensure text is centered on mobile */
            }

            .hero-section .hero-text .description-line {
                font-size: 1.2em; /* Smaller description for mobile */
                margin-bottom: 10px;
                font-family: 'DidactGothic', sans-serif;
                text-align: left; /* Ensure text is centered on mobile */
                max-width: 70%;
            }

    /*Secondary Container Text*/
    .secondary-content-section {
        padding: 10px 10px;
        background-color: #1c1c1c; /* If you want this section to stand out, you might choose a slightly different background here, e.g., #2a2a2a */
        display: block;
        flex-direction: column; /* Default to column for small screens (image on top, text below) */
        align-items: center; /* Center items horizontally when in column layout */
        gap: 10px; /* Space between the image and the text block */
        width: 100%;
        margin: 0px auto;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: #f8f9fa; /* Ensure text color is readable on this section's background */
    }

    .secondary-image {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        padding-left: 30px;
        flex-shrink: 0; /* Prevent image from shrinking too much in flex container */
        object-fit: cover; /* Ensures image covers its area without distortion */
        /* You might want a specific max-width for smaller screens too */
        max-width: 40%; /* Image takes up roughly 40% of the section's width */
        min-width: 250px; /* Ensure image doesn't get too small */
    }

    .secondary-text {
        padding-top: 30px;
        margin-top: 0;
        text-align: left; /* Default text alignment for smaller screens */
        flex-grow: 1; /* Allow text block to grow and take available space */
        max-width: 100%; /* Text takes up roughly 55% of the section's width */
    }

        .secondary-text h2 {
            font-size: 4rem;
            font-family: 'GreatVibes';
            margin-top: 0px;
            margin-bottom: 40px;
            color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
        }

        .secondary-text p {
            font-size: 1.5rem;
            font-family: 'DidactGothic';
            line-height: 1.6;
            color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
            margin-bottom: 30px;
        }

        .secondary-text .second-line {
            font-size: 1.8rem;
            font-family: 'DidactGothic';
            line-height: 1.6;
            color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
            margin-bottom: 0px;
        }


    .secondary-content-section {
        flex-direction: row; /* Layout image and text side-by-side */
        justify-content: center; /* Center the image and text block */
        align-items: center; /* Vertically align image and text to their centers */
        text-align: left; /* This property primarily affects the container, not direct text children */
        gap: 50px; /* Increased gap for more space between image and text */
        padding: 10px 40px; /* More padding for larger screens */
    }




    /* About Me Hero Section */
    .about-section {
        background-image: url('/images/AboutMe/CameraAM.jpg');
        background-position: center 5%;
        min-height: 50vh; /* Adjusted for mobile */
        margin-top: 80px; /* Space after fixed navbar */
        margin-bottom: 30px; /* Adjusted */
        /*justify-content: center;*/ /* Center content horizontally on mobile */
        /*text-align: center;*/ /* Center text within about-text div on mobile */
    }

        .about-section::before {
            background-color: rgba(0, 0, 0, 0.4); /* Specific overlay for About */
        }

        .about-section .about-text {
            margin-left: 0; /* Reset margin for mobile */
            /*transform: none;*/ /* No transform for centering with flexbox */
            /*text-align: center;*/ /* Center text within about-text div on mobile */
            text-align: left;
            /*position:*/
            /*transform: translate(-50%, -50%);*/ /* Adjust for element's own size */
            color: whitesmoke;
            z-index: 2;
            padding: 0px;
            max-width: 90%;
            top: 5%; /* Center vertically */
            left: 4%; /* Center horizontally */
            box-sizing: border-box;
            text-shadow: -0.6px -0.6px 0 #000, 0.6px -0.6px 0 #000, -0.6px 0.6px 0 #000, 0.6px 0.6px 0 #000;
        }

        .about-section .about-text h1 {
            font-size: 2.2em; /* Smaller heading for mobile */
            margin-bottom: 30px; /* Adjusted margin */
            font-family: 'DidactGothic', sans-serif;
            text-align: left; /* Center text on mobile */
            text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Black outline for h1 */
        }

            .about-section .about-text p,
            .about-section .about-text .about-line {
                font-size: 1.15em; /* Smaller body text for mobile */
                line-height: 1.55;
                font-family: 'DidactGothic', sans-serif;
                text-align: center; /* Default to center on mobile */
                margin-top: 0px; /* Adjusted margin */
                margin-bottom: 40px;
            }

    /*About Me Secondary Container Text*/
    .about-testimonials-container .testimonials-heading {
        text-align: left;
        margin-bottom: 0px;
        padding-left: 20px;
    }

    .about-secondary-content-section {
        padding: 5px 5px;
        background-color: #1c1c1c; /* If you want this section to stand out, you might choose a slightly different background here, e.g., #2a2a2a */
        display: flex;
        flex-direction: column; /* Default to column for small screens (image on top, text below) */
        align-items: center; /* Center items horizontally when in column layout */
        gap: 20px; /* Space between the image and the text block */
        margin: 5px 5px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: #f8f9fa; /* Ensure text color is readable on this section's background */
    }

    .about-secondary-image {
        height: 300px;
        width: 300px;
        object-position: center 20%;
        transform: scale(0.65);
        border-radius: 25%;
        flex-shrink: 0; /* Prevent image from shrinking too much in flex container */
        object-fit: cover; /* Ensures image covers its area without distortion */
        /* You might want a specific max-width for smaller screens too */
        max-width: 300px; /* Example: limit max width on smaller screens */
    }

    .about-secondary-text {
        padding-top: 0;
        margin-top: 0;
        max-width: 85%;
        text-align: center; /* Default text alignment for smaller screens */
        flex-grow: 1; /* Allow text block to grow and take available space */
    }

        .about-secondary-text .about-testimonial {
            font-size: 1.07rem;
            font-family: 'DidactGothic';
            line-height: 1.6;
            text-align: left;
            color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
            margin-bottom: 10px;
        }

        .about-secondary-text .about-testimonial-signature {
            font-size: 1.09rem;
            font-weight: bold;
            font-family: 'DidactGothic';
            line-height: 1.6;
            text-align: left;
            color: #f8f9fa; /* Changed to match body text color or a suitable contrast */
            margin-bottom: 10px;
        }

 
   

    /* Contact Hero Section */
    .contact-hero-section {
        background-image: url('/images/ContactBG.jpg'); /* Corrected image path */
        background-position: center 95%;
        min-height: 35vh; /* Adjusted for mobile */
        margin-top: 80px; /* Space after fixed navbar */
    }


    /* --- 5. Content Sections (Text & Image Blocks) --- */

    /* Generic Content Section Base */
    .content-section-base {
        padding: 30px 15px; /* Adjusted padding for mobile */
        background-color: var(--primary-bg-color);
        display: flex;
        flex-direction: column; /* Default to column for small screens */
        align-items: center; /* Center items horizontally in column layout */
        gap: 20px; /* Adjusted gap for mobile */
        max-width: 100%; /* Default to full width for mobile */
        margin: 30px auto; /* Adjusted margin for spacing between sections */
        border-radius: 8px;
        box-shadow: 0 2
    }
}