/* styles.css */

/* Reset & basic styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: #333;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s, color 0.3s;
    border-radius: 4px;
}

.nav-buttons a:hover {
    background-color: #ddd;
}

.social-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-buttons a img {
    width: 30px;
    height: 30px;
}

.language-switch {
    margin-left: 10px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #ddd;
    margin-top: 20px;
}

.footer-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-buttons a img {
    width: 25px;
    height: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-buttons {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .social-buttons {
        margin-top: 10px;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile nav menu */
.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Toggle menu for small screens */
.nav-buttons.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin-left: auto;
    }

    .nav-buttons {
        display: none; /* hide by default */
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding: 10px 0;
    }

    .nav-buttons a {
        margin: 10px 0;
    }
}


@media (max-width: 768px) {
    .footer-container {
        display: block;        /* Stack sections vertically */
        text-align: left;      /* Align all content to the left */
        padding-left: 20px;    /* Add some padding for visual balance */
    }

    .footer-section {
        width: 100%;           /* Full width on mobile */
        margin: 10px 0;        /* Space between sections */
    }

    .footer-section h4 {
        text-align: left;
    }

    .social-icons {
        text-align: left;
    }
}


.sub-header {
    background-color: #fff3cd; /* light construction-style yellow */
    color: #856404; /* dark caution text */
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #ffeeba;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sub-header .construction-icon {
    font-size: 22px;
}


@media (max-width: 768px) {
    .sub-header {
        font-size: 16px;
        padding: 8px 0;
    }
    .sub-header .construction-icon {
        font-size: 20px;
    }
}

.call-button-container {
    text-align: center;
    padding: 20px 0;
    background-color: #f2f2f2; /* to visually separate the button section */
}

.call-button {
    display: inline-block;
    background-color: #28a745; /* green call color */
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.call-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .call-button {
        width: 80%;
        font-size: 18px;
        padding: 15px;
    }
}


.address-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.address-section p {
    font-size: 18px;
    color: #555;
}

.map-container iframe {
    max-width: 600px;
    width: 100%;
    height: 350px;
}
