body {
    background-color: #FFB4B0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 5rem; /* Added padding at the top to account for the navbar */
    overflow: hidden;
}

.contact {
    text-align: center;
    padding: 2rem;
    background-color: #fce4e4;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
    margin: 2rem auto;
    max-width: 90%;
    width: 600px; 
}

.contact h1 {
    font-size: 2.5rem;
    color: #582A38;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Allow buttons to wrap */
}

.btn {
    text-decoration: none;
    color: white;
    background-color: #582A38;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #DEB3AD;
    transform: scale(1.1);
}

.btn:active {
    transform: scale(0.9);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #582A38;
    border-bottom: 2px solid #000;
    position: fixed;
    width: 100%; /* Ensure navbar spans the full width */
    top: 0;
    z-index: 1000; /* Ensure it stays on top */
}

.navbar .logo h1 {
    color: white;
    font-size: 1.5rem; /* Adjusted for smaller screens */
    margin: 0;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; /* Wrap items on smaller screens */
}

.navbar nav ul li {
    margin: 0;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

/* Highlight active current page */
.navbar nav ul li a.active {
    font-size: 1.2rem;
    border-bottom: 2px solid #fff;
    color: #FFB4B0;
    padding-bottom: 5px;
}

footer {
    background-color: #582A38;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Wrap on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-content .left-section h3 {
    margin-bottom: 10px;
    font-size: 16px; /* Adjusted for smaller screens */
}

.footer-content .logo h1 {
    font-size: 20px; /* Adjusted for smaller screens */
    margin: 0;
}

.footer-content .right-section a {
    transition: transform 0.3s ease;
    margin: 0 10px; /* Adjusted spacing for smaller screens */
}

.footer-content .right-section a:hover {
    transform: scale(1.1);
}

.footer-content .right-section img {
    width: 25px; /* Adjusted for smaller screens */
    height: 25px;
}

.footer-bottom {
    margin-top: 10px;
    font-size: 12px; /* Adjusted for smaller screens */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .logo h1 {
        font-size: 1.2rem;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact {
        padding: 1rem;
    }

    .contact h1 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }

    .links {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content .right-section img {
        width: 20px;
        height: 20px;
    }
}
footer {
    background-color: #582A38;
    color: white;
    padding: 5px 50px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-content .left-section h3 {
    margin-bottom: 10px;
    font-size: 20px;
}
.footer-content .logo h1 {
    font-size: 24px;
    margin: 0;
    margin-top: 5%;
}
.footer-content .right-section a {
    transition: transform 0.3s ease;
    margin-right: 70px;
    margin-top: 10Px;
}
.footer-content .right-section a:hover {
    transform: scale(1.1);
}
.footer-content .right-section img {
    width: 30px;
    height: 30px;
}
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}

