/* ===== Body ===== */
body {
    font-family: 'Roboto', sans-serif; 
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

/* ===== Header ===== */
header {
    background-color: #8e1618;
    padding: 5px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-height: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 24px;
    margin: 0;
}

.logo-image {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
    position: relative; 
}

/* ===== Navbar ===== */
.nav-links {
    list-style: none;
    display: flex;
    padding: 0;
    margin-left: 60px;
    align-items: center;
    width: 100%;
    transition: top 0.2s ease;
}

.nav-links li {
    margin: 0 15px;
    font-family: ABeeZee, sans-serif;
    line-height: 41.04px;
}

.nav-links li.schedule-button-li {
    margin-left: auto;
    margin-right: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.schedule-button {
    background-color: #8e1618;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid white;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.schedule-button:hover {
    background-color: white;
    color: #8e1618;
}

/* Menu toggle mobile */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
    }
}

/* ===== Navbar Mobile ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px; 
        right: 0;
        width: 260px;
        background-color: #921b1c;
        text-align: center;
        z-index: 9999;
        padding: 15px 0;
        margin: 0;
        display: none;
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        margin: 3px 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 5px 0;
        text-align: center; 
    }

    .schedule-button {
        background: none;
        padding: 6px 12px;
        color: white;
        font-weight: bold;
        display: inline-block;
        border: 2px solid white;
        width: auto;
    }
}

/* ===== Home Section ===== */
#home {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.intro-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    text-align: center;
}

.intro-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    flex: 2;
    min-width: 300px;
    margin: 20px;
    text-align: left;
}

.intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2em;
}

.intro-text p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* ===== Services Section ===== */
#services {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.service-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 100px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    color: #a7292c;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.service-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1em;
}

@media (max-width: 768px) {
    .service-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .service-item {
        width: 100%;
    }
}

/* ===== Contact Section ===== */
#contact {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.contact-general {
    margin-bottom: 40px;
}

.contact-general h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.contact-general p {
    font-size: 1.1em;
    color: #555;
    margin: 5px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.contact-block {
    width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-block p {
    min-height: 48px;
    margin-bottom: 10px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.map-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

/* ===== Footer ===== */
footer {
    background-color: #8e1618;
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.footer-name {
    font-size: 1.2em;
    margin: 5px 0;
}

.footer-title {
    font-size: 1em;
    margin: 5px 0;
    color: #ffffff;
}

.footer-copyright {
    margin-top: 30px;
    font-size: 0.9em;
}
