body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center align both the logo and nav */
    padding: 0 20px;
    position: relative;
}

.logo-container {
    position: absolute;
    left: 25px;
    top: 0px;
    width: 80px; /* Adjust width to be narrower */
    height: 100px; /* Adjust height to be taller */
    background-color: white;
    border-radius: 60px / 80px; /* Create an oval shape that's taller than it is wide */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 87.5px; /* Increased by 75% from the original 50px */
}

.slogan {
    font-size: 1em; /* Smaller font size for the slogan */
    color: white;
    position: absolute;
    left: 105px; /* Moved the slogan closer to the logo */
    top: 75px; /* Adjusted position */
    transform: translateY(-50%);
}

.social-links {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-links a {
    margin-left: 10px;
}

.social-icon {
    width: 24px; /* Adjust size of social media icons */
    height: 24px;
}

nav {
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the menu items */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

h1 {
    margin-top: 20px; /* Add some space above the heading */
}

/* New class to make .Love hot pink */
.pink-dot-love {
    color: #FF69B4; /* Hot pink color */
}

main {
    padding: 20px;
    text-align: center;
}

.content-section {
    max-width: 1000px; /* Match the width of the slideshow */
    margin: 20px auto; /* Center the content and add margin above/below */
    text-align: left; /* Align text to the left for readability */
    padding: 0 20px; /* Add padding to ensure the text doesn't touch the edges */
}

.about-me-images {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the images */
    margin-top: 20px; /* Space above the images */
}

.about-me-images img {
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: add some rounded corners */
}

.about-me-images img.landscape {
    width: 600px; /* Larger width for landscape image */
}

.about-me-images img.portrait {
    width: 300px; /* Smaller width for portrait images */
}

.service-top {
    text-align: center;
    margin-bottom: 40px; /* Space between the top and the columns */
}

.service-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px; /* Space between the service items */
    text-align: center;
}

.service-item {
    flex: 1 1 45%; /* Flex property to manage space distribution */
    min-width: 250px; /* Ensures the service items don't get too small */
    max-width: 300px;
}

.service-image {
    width: 100%; /* Make the images as wide as their containers */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: add some rounded corners */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto; /* Center the form on the page */
    align-items: flex-start; /* Align items to the left */
}

.contact-form label {
    font-weight: bold;
    margin-bottom: -20px; /* Reduced space between the label and the text box */
}

.contact-form .name-fields {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between the first and last name fields */
    width: 100%; /* Ensure the fields align with the rest */
}

.contact-form .name-fields input {
    flex: 1;
    min-width: 48%; /* Ensure the fields stay side by side */
}

.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% + 20px); /* Increase width by 20px */
    margin-left: 0px; /* Keep the increased width aligned with the left edge */
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #FF69B4; /* Hot pink background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.contact-form button:hover {
    background-color: #FF4C97; /* Darker pink on hover */
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-section, .location-section {
    flex: 1;
    max-width: 300px; /* Limit the width of each section */
    margin-right: 0px;
    text-align: left; /* Keep the text left-justified */
    margin-bottom: 25px;
    background-color: #FF69B4; /* Hot pink background */
    color: white; /* White text */
    padding: 10px; /* Add padding inside the box for better spacing */
    border-radius: 5px; /* Add rounded corners to the box */
}

.location-section {
    margin-left: 35px;
    margin-right: -35px;
}

.contact-section h2, .location-section h2 {
    margin-bottom: 10px;
}

.contact-section p, .location-section p {
    margin: 5px 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Slideshow styles */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    height: 500px; /* Set a fixed height */
    background-color: #f0f0f0; /* Temporary background color to ensure visibility */
}

.mySlides {
    position: absolute;
    width: 100%;
    height: 100%; /* Ensure slides fill the container */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.mySlides.show {
    opacity: 1;
    z-index: 10; /* Increase z-index to ensure visibility */
}

.mySlides img {
    width: 100%;
    height: 100%; /* Force images to fill the slide container */
    object-fit: cover; /* Ensures image fills the container without stretching */
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.form-intro {
    max-width: 600px;
    margin: 80px auto 20px auto; /* Increase the top margin to add more space */
    text-align: left;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        position: static;
        margin-bottom: 10px;
    }

    .slogan {
        position: static;
        transform: none;
        margin-bottom: 10px;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .social-links {
        position: static;
        margin-top: 10px;
    }
}
