/* General styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffe6f2; /* Pink theme */
}

/* Header styles */
.header {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text content */
    height: auto; /* Adjust based on content */
    padding: 20px; /* Add some padding for spacing */
    background-color: #ffe6f2; /* Optional background color */
}

.logo {
    max-width: 270px; /* Control logo size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Space between logo and contact info */
}

.contact-info p {
    margin: 5px 0; /* Add spacing between contact info lines */
}

.phone, .email {
    color: #ff1493; /* Hot pink color */
    font-weight: bold; /* Bold text */
    text-decoration: none; /* Remove underline */
}

.phone:hover, .email:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Navigation styles */
.nav {
    position: sticky; /* Makes the navbar stick to the top of the viewport */
    top: 0; /* Sticks it to the top */
    z-index: 1000; /* Ensures it stays above other elements */
    background-color: #ff99cc; /* Matches the theme */
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}

.nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 1rem;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav a:hover {
    background-color: #ff80bf; /* Lighter shade of pink on hover */
}

/* Section styles */
.section {
    background-color: #ffe6f2; /* Light pink */
    border: 2px solid #ff99cc; /* Pink border */
    border-radius: 8px; /* Rounded corners */
    padding: 1.5rem; /* Inner spacing */
    margin: 1.5rem auto; /* Space between sections */
    max-width: 900px; /* Centered and limited width */
}

.section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image in Who's Cleaning section */
.cleaninglogo {
    max-width: 190px; /* Reduce image width */
    height: auto; /* Maintain aspect ratio */
    float: right; /* Align the image to the right */
    margin: 5px 5px 5px 5px; /* Adjust spacing to bring it inside the box */
    border: none; /* Remove shadow and border styling */
}

/* Form styles */
#quote-form {
    background-color: #ffd1e8; /* Light pink */
    padding: 2rem;
    border-radius: 8px;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
}

form input, form textarea, form button {
    width: 80%;
    margin: 0.5rem auto;
    padding: 0.5rem;
    border: 1px solid #ff99cc;
    border-radius: 4px;
}

form button {
    background-color: #ff80bf;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

form button:hover {
    transform: scale(1.05);
    background-color: #ff4da6;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #ff99cc;
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
    }
}
