/* Add your custom styles here */
/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
}
body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Header styles */
header {
    background-color: #006457; /* Updated background color */ /* Updated background color */
    color: #fff;
    padding: 20px 40px; /* Adjusted padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s; /* Background color transition */
    font-weight: bold;
}
.logo {
    width: 4vw;
    height: 4vw;
}
.main-title {
    font-size: 24px;
    margin: 0;
    text-align: left;
    transition: font-size 0.3s; /* Font size transition */
}

/* Custom CSS for Navbar */
.navbar {
    background-color: #000000; /* Change the background color to your preference */
}

.navbar-brand {
    color: #ffffff; /* Change the brand text color */
    font-size: 24px; /* Adjust the font size as needed */
}

.navbar-nav .nav-item .nav-link {
    color: #ffffff; /* Change the link text color */
    font-size: 18px; /* Adjust the font size as needed */
}

/* Add animations to the navbar links */
.navbar-nav .nav-item .nav-link:hover {
    color: #ffffff; /* Change the link color on hover */
    transition: color 0.3s ease-in-out; /* Add a smooth color transition */
    transform: scale(1.05); /* Add scale effect on hover */
}

/* Initial styles for the mobile toggle (hidden on larger screens) */
.mobile-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    /* Show the mobile toggle button and hide the regular navigation */
    .mobile-toggle {
        display: block;
        cursor: pointer;
        font-size: 24px;
        padding: 10px;
        color: #fff;
    }

    /* Hide the regular navigation menu */
    nav ul {
        display: none;
    }

    /* Style the mobile menu */
    nav ul.show-menu {
        display: block;
        background-color: rgba(255, 255, 255, 0.9);
        text-align: center;
        position: absolute;
        top: 60px; /* Adjust the top position as needed */
        right: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 999;
    }

    nav ul.show-menu li {
        margin: 10px 0;
    }

    nav ul.show-menu a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        font-size: 18px;
    }
}


/* Style the Appointment Form Section */
#appointment-form {
    background-color: #f1f0f0;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    text-align: center;
    margin: 20px;
    max-width: 100%; /* Ensure it takes full width */
    width: 100%; /* Ensure it takes full width */
    box-sizing: border-box; /* Ensure padding and border fit within width */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border fit within width */
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #000;
}

/* Style your headings */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.confirmation-message {
    font-weight: bold;
    color: #028876;
    font-size: 20px;
}

/* Footer */
footer {
    background-color: #009688;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Social Media Icons */
.social-media-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    margin-right: 20px;
}

.social-media-icons a:hover {
    color: #ffffff;
}

/* Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #037e7e; /* Background color */
    color: #000000; /* Text color */
}

.footer-section {
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.footer-section:hover {
    transform: translateY(-5px); /* Add a subtle lift effect on hover */
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000000;
}
.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #000000; /* Text color */
}
.footer-section ul li a{
    color: white;
}
.footer-social-icons {
    margin-top: 20px;
    height: 4px;
    width: 4px;
}

.footer-social-icons a {
    text-decoration: none;
    font-size: 24px;
    margin-right: 20px;
    color: #fff; /* Icon color */
    transition: transform 0.3s ease-in-out;
}

.footer-social-icons a:hover {
    color: #000000; /* Hover color */
    transform: scale(1.2); /* Add scale effect on hover */
}

.footer-bottom {
    background-color: #037e7e; /* Background color */
    padding: 10px 0;
    text-align: center;
    color: #fff; /* Text color */
    font-size: 14px;
    transition: background-color 0.3s ease-in-out;
}

.footer-bottom:hover {
    background-color: #000; /* Change background color on hover */
}

/* Media query for small screens (adjust as needed) */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .footer-social-icons img {
        width: 25px;
        height: 25px;
    }
}

