   
   /* Import the Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Loading Screen Styles */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #071b3d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.loading-content {
    color: white;
    text-align: center;
    font-family: 'Oleo Script', sans-serif;
}

.loading-content h1 {
    font-size: 60px;
    margin-bottom: 10px;
    font-weight: bold;
}

.loading-content p {
    font-size: 24px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #loadingScreen h1 {
        font-size: 1.5rem;
    }
    
    #loadingScreen p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    #loadingScreen h1 {
        font-size: 1.2rem;
    }
    
    #loadingScreen p {
        font-size: 0.75rem;
    }
}
    
    /* Transparent Navbar */
    .navbar {
        position: absolute;
        background-color: #071b3d;  
        padding: 5px 0;
        transition: background-color 0.3s ease, border-radius 0.3s ease;  
        top: 0;  
        width: 100%;
        z-index: 1000;  
    }

    .sticky-navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #071b3d; 
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Logo Styling */
    .navbar-brand img {
        height: 70px;
        margin-right: 10px;
    }
    .navbar-brand h1 {
        display: inline;
        font-size: 1.5rem;
        color: #fef5e6;
        margin: 0;
        font-family: 'Oleo Script', cursive;
    }

    /* Navbar Link Styling */
    .navbar-nav .nav-link {
        color: #fef5e6; 
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #ff73a2;
    }
    .navbar-nav .nav-link.active {
        color: #fef5e6;
    }

    /* Dropdown Menu Customization */
    .dropdown-menu {
        background-color: #ff73a2; 
        border: none;
    }
    .dropdown-item {
        color: #fff; 
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .dropdown-item:hover {
        background-color: #ffffff; 
        color: #ff73a2; 
    }

    @media (max-width: 768px) {
        .navbar-brand img {
            height: 50px;
        }
        .navbar-brand h1 {
            font-size: 1.2rem;
        }
    }
    
   /* Carousel Item */
@media (max-width: 768px) {
    #carouselExampleIndicators .carousel-item {
        height: auto; /* Allow height to be determined by image aspect ratio */
    }
    #carouselExampleIndicators img {
        object-fit: cover; /* Ensures images scale to fill the area without stretching */
        width: 100%; /* Ensure the image takes the full width of the container */
    }
}

/* About Section on Small Screens */
@media (max-width: 768px) {
    .about-text {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align content */
        text-align: center; /* Center text for smaller screens */
    }

    .profile-img {
        width: 80%; /* Allow image to take up more width on smaller screens */
        max-width: 300px; /* Limit max size to avoid being too big */
        margin: 20px 0; /* Adjust margins */
    }

    .sub-text, .static-text, .animated-info, .body-text1 {
        font-size: 1rem; /* Adjust font size for mobile */
    }
}


 /* About Section */
 .about {
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #071b3d;
 }
 
 .about-text {
     text-align: left;
     display: flex;
    margin-left: 10px;
 }
 .small-text {
     font-size: 1.2rem;
     color: #e2e2e2;
     margin-bottom: 10px;
     display: block;
 }
 
 /* Static Text */
 .static-text {
     font-size: 2.5rem;
     color: #ffffff;
     font-weight: bold;
     font-family: 'Oleo Script', cursive;
     display: inline;
 }

 /* Animated Text */
 .animated-info {
     font-size: 2.5rem;
     color: #ff73a2;
     font-weight: bold;
     font-family: 'Oleo Script', cursive;
     display: inline-block;
     overflow: hidden;
     border-right: 0.15em solid #ff73a2;
     white-space: nowrap;
     vertical-align: bottom; /* Align with the static text */
     animation: typing 5s steps(10, end) infinite alternate, blink 0.75s step-end infinite; 
 }
 
 /* Typewriter effect keyframes */
 @keyframes typing {
     0% { width: 0; }
     50% { width: 8ch; /* Adjusted for "I'm Geulis" length */ }
     100% { width: 0; }
 }
 
 /* Blinking cursor keyframes */
 @keyframes blink {
     from, to { border-color: transparent; }
     50% { border-color: #ff73a2; }
 }

 .body-text1 {
    margin-right: 50px;
    margin-top: 10px;
    color: #fef5e6;
    font-family: 'Poppins';
 }

/* Body Text Slide In Animation */
.body-text1 {
    opacity: 0;
    transform: translateY(-30px); /* Start 30px above the final position */
    animation: slideInFromTop 3s forwards; /* Slide in over 1 second */
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px); /* Start 30px above */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to the final position */
    }
}

 .sub-text {
    font-size: 0.875rem; /* Adjust size as needed */
    color: #e2e2e2; /* Make the color lighter if desired */
    margin-top: 10px;
    font-weight: normal;
    font-family: 'Poppins', sans-serif; 
}




/* Carousel Next & Previous Button (Common styles) */
.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: all 0.3s ease;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #ff73a2; /* Pink color for the icon */
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* Arrow shape */
}

/* Hover effect for both buttons */
.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: #ff73a2; /* Change background color on hover */
    transform: translateY(-50%) scale(1.1); /* Slightly enlarge the button */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Bigger shadow on hover */
}

/* Positioning for Previous Button */
.carousel-control-prev {
    left: 10px; /* Position it to the left */
}

/* Positioning for Next Button */
.carousel-control-next {
    right: 10px; /* Position it to the right */
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

/* Style for the 'View More' button */
.btn-pink {
    background-color: #ff73a2;
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

/* Pulsing animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hover effect */
.btn-pink:hover {
    background-color: #d64a7e;
    transform: translateY(-3px) scale(1.08); /* Slight lift and scale-up */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Click effect */
.btn-pink:active {
    transform: scale(0.98); /* Press effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */
}

/* Inset highlight for a glossy effect */
.btn-pink::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

/* Highlight effect on hover */
.btn-pink:hover::before {
    transform: scale(1.2); /* Glow effect */
    opacity: 0.6;
}

/* Optional: Focus effect for accessibility */
.btn-pink:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 115, 162, 0.5); /* Pink focus ring */
}

.container-fluid {
    margin-left: 40px;
    margin-bottom: 60px;/* Adds space below the container on larger screens */
}

.gallery-background {
    padding-top: 60px; /* Adds space above the gallery section on larger screens */
}

/* Remove left margin and add padding for smaller screens */
@media (max-width: 576px) {
    .container-fluid {
        margin-left: 0;
        padding: 0 15px; /* Adjust padding for spacing */
    }

    .gallery-background {
        padding-top: 20px;
    }
}

/* Medium Screens (tablets) */
@media (max-width: 992px) {
    .container-fluid p.sub-text,
    .container-fluid .static-text,
    .container-fluid .animated-info,
    .container-fluid .body-text1 {
        font-size: 1rem; /* Slightly smaller for tablets */
    }
}

/* Small Screens (phones) */
@media (max-width: 768px) {
    .container-fluid p.sub-text,
    .container-fluid .static-text,
    .container-fluid .animated-info,
    .container-fluid .body-text1 {
        font-size: 0.9rem; /* Smaller for mobile screens */
    }
}


/* Add a rule to avoid overflow */
.container-fluid, .gallery-background {
    overflow-x: hidden; /* Prevent horizontal overflow */
}



/* General Font Styling for Larger Screens */
.container-fluid p.sub-text,
.container-fluid .static-text,
.container-fluid .animated-info,
.container-fluid .body-text1 {
    font-size: 1.2rem; /* Adjust as needed for desktop */
}

/* Medium Screens (tablets, etc.) */
@media (max-width: 992px) {
    .container-fluid p.sub-text,
    .container-fluid .static-text,
    .container-fluid .animated-info,
    .container-fluid .body-text1 {
        font-size: 1rem; /* Slightly smaller for tablets */
    }
}

/* Small Screens (phones) */
@media (max-width: 768px) {
    .container-fluid p.sub-text,
    .container-fluid .static-text,
    .container-fluid .animated-info,
    .container-fluid .body-text1 {
        font-size: 0.9rem; /* Smaller for mobile screens */
    }
}

/* Extra Small Screens (small phones) */
@media (max-width: 576px) {
    .container-fluid p.sub-text,
    .container-fluid .static-text,
    .container-fluid .animated-info,
    .container-fluid .body-text1 {
        font-size: 0.8rem; /* Even smaller for very small screens */
    }
}


.btn-pink {
    display: inline-block; /* To ensure it's treated as a block for centering */
    margin: 20px auto; /* Auto horizontal margins to center */
}


/* Animation for the Profile Image */
.profile-img {
    opacity: 0; /* Initially hidden */
    transform: scale(0.5); /* Start from a smaller size */
    animation: fadeInScale 3s forwards; /* Apply the animation */
}

/* Define the fadeInScale animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1); /* Final scale */
    }
}

/* Profile image styling */
.profile-img {
    width: 100%;
    max-width: 400px; /* Set the maximum width to 400px */
    border-radius: 10px;
    margin-right: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-img {
        width: 300px; /* Resize for tablets */
    }
}

@media (max-width: 576px) {
    .profile-img {
        width: 200px; /* Resize for mobile screens */
    }
}

/* Background container for the gallery */
.gallery-background {
    background-color: #071b3d;
    padding: 20px;
}

/* Image Gallery Styles */
.image-gallery {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    background-color: #fcf3e4;
    flex-wrap: wrap;
    padding: 20px 40px;
    margin: 0 auto;
    border-radius: 30px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    font-size: 24px;
    color: #071b3d;
    margin-top: 50px;
    margin-bottom: 20px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Image Item Styling */
.image-item {
    margin: 20px 0;
    text-align: center;
    width: 20%;
    opacity: 0;
    transform: translateY(20px); /* Initial offset for animation */
    animation: fadeInAlternate 0.8s ease-in-out forwards;
}



/* Specific Animation Delays for Alternating Appearance */
.image-item:nth-child(2) { animation-delay: 0.2s; }
.image-item:nth-child(3) { animation-delay: 0.4s; }
.image-item:nth-child(4) { animation-delay: 0.6s; }

/* Image Styling */
.image-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-item:hover img {
    transform: scale(1.1);
}

/* Image Description Styling */
.image-description {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Define the alternating fade and slide animation */
@keyframes fadeInAlternate {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .image-item {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .image-item {
        width: 45%;
    }

    .gallery-header {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .image-item {
        width: 100%;
    }

    .gallery-header {
        font-size: 18px;
    }

    .image-description {
        font-size: 14px;
    }
}


.image-preview-section {
    padding: 40px 0;
}

.section-title {
    color: #fff;
    font-family: 'Oleo Script', cursive;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Remove gaps and ensure no padding/margin */
.image-preview-section .container {
    text-align: center; /* Center the container */
}

.image-container {
    display: flex; /* Flexbox layout to arrange images horizontally */
    justify-content: center; /* Center all images horizontally */
    gap: 30px; /* Remove any gap between images */
    flex-wrap: nowrap; /* Prevent images from wrapping to a new line */
    margin-top: 20px; /* Optional, add spacing between title and images */
}

.image-item {
    padding: 0; /* Remove padding around each image item */
}

.image-item img {
    width: 100%; /* Set image width to 100% of the container */
    max-width: 250px; /* Limit the maximum size of images */
    transition: transform 0.3s ease;
    border-radius: 20px;
    display: block; /* Ensure the image is displayed as a block */
    margin: 0; /* Remove margin */
}

/* Slight zoom effect on hover */
.image-item:hover img {
    transform: scale(1.05);
}
/* Styling for the button */
.btn-outline-light {
    background-color: #ff73a2;
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

/* Pulsing animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hover effect */
.btn-outline-light:hover {
    background-color: #ff92cc;
    color: #071b3d;
    transform: translateY(-3px) scale(1.08); /* Slight lift and scale-up */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Click effect */
.btn-outline-light:active {
    transform: scale(0.98); /* Press effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
}

/* Inset highlight for a glossy effect */
.btn-outline-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

/* Highlight effect on hover */
.btn-outline-light:hover::before {
    transform: scale(1.2); /* Glow effect */
    opacity: 0.6;
}

/* Optional: Focus effect for accessibility */
.btn-outline-light:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 115, 162, 0.5); /* Pink focus ring */
}


/* Responsive Design */
@media (max-width: 768px) {
    .image-item img {
        max-width: 200px; /* Reduce image size on medium screens */
    }
}

@media (max-width: 576px) {
    .image-item img {
        max-width: 150px; /* Further reduce image size on small screens */
    }
}

/* Static "Have a" Text */
.static-text {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    color: #ffffff;
}

/* Dynamic Changing Text */
.dynamic-text {
    font-family: 'Oleo Script', cursive;
    font-size: 70px;
    color: #ff73a2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.interactive-header:hover .dynamic-text {
    transform: scale(1.1);
    color: #ed8b21;
}


/* Interactive Header Section Styles */
.interactive-header-section {
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

/* Subtext for Additional Flair */
.interactive-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #D4D4D4;
    margin-bottom: 90px;
}

/* Responsive Header Font Size */
@media (max-width: 768px) {
    .interactive-header {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .interactive-header {
        font-size: 2rem;
    }
    .interactive-subtext {
        font-size: 1rem;
    }
}


/* Contact Section Styling */
.contact {
    background-color: #ff73a2; /* Light background color */
    padding: 15px 0; /* Reduced padding to minimize space */
    border-radius: 30px 30px 0 0; /* Rounded corners on top-left and top-right */
    margin-top: 20px; /* Reduced space above the contact section */
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
}

.contact h3 {
    font-size: 1.5rem;
    font-weight: 800; /* Bold font weight */
    margin-top: 20px;
    margin-bottom: 5px; /* Reduced bottom margin */
    color: #ffffff; /* Change the color of the "Contact Me" heading */
}

.contact p {
    font-size: 0.9rem;
    font-weight: 400; /* Corrected font-weight */
    color: #ffffff;
    margin-bottom: 10px; /* Reduced bottom margin */
}

/* Flexbox Layout */
.contact .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-text {
    text-align: left;
    margin-bottom: 10px; /* Reduced margin between text and icons */
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px; /* Reduced space between icons */
}

.social-icon {
    display: inline-block;
}

.icon {
    width: 40px; /* Set the size of the icons */
    height: 40px;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.1); /* Scale the icon on hover */
}

/* Optional: Additional hover effect for the icon containers */
.social-icon:hover .icon {
    opacity: 0.8;
}

/* Copyright Styling */
.copyright {
    text-align: center;
    font-size: 0.5rem; /* Default small font size */
    color: #ffffff; /* White color to match the contact section */
    margin-top: 0px; /* Space above the copyright text */
    opacity: 0.8; /* Slightly faded */
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .contact .row {
        flex-direction: column; /* Stack elements vertically on medium screens */
        align-items: center;
    }

    .contact-text {
        text-align: center; /* Center text for medium screens */
    }

    .social-icons {
        justify-content: center; /* Center icons on medium screens */
    }
}

@media (max-width: 768px) {
    .contact h3 {
        font-size: 1.8rem; /* Smaller font size for small screens */
    }

    .contact p {
        font-size: 1rem; /* Smaller font size for small screens */
    }

    .social-icons {
        gap: 10px; /* Reduce space between icons on smaller screens */
    }

    .icon {
        width: 35px; /* Smaller icons on small screens */
        height: 35px;
    }
}

@media (max-width: 576px) {
    .contact h3 {
        font-size: 1.5rem; /* Smaller font size for very small screens */
    }

    .contact p {
        font-size: 0.9rem; /* Smaller font size for very small screens */
    }

    .icon {
        width: 30px; /* Even smaller icons for very small screens */
        height: 30px;
    }
}

