/* header-footer.css */

/*--------begin header-------*/
header {
    width: 100%;
}

.header-container {
    background-color: #333;
    color: white;
    padding: 10px 60px 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px !important;
    max-height: 66px !important; /* Added to enforce height limit */
    height: 66px !important;
    width: auto !important; /* Ensure width adjusts */
}

/* contains a <ul> with seven navigation links */
.nav-links {
    font-family: "Roboto Condensed", Tahoma, Geneva, sans-serif;
    font-size: 15px;
    letter-spacing: 0;
}

.nav-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin-left: 1rem;
    padding-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:hover {
    color: #42af7d;
}

/* contains three <div class="line"> elements, representing the hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

/*--------begin footer-------*/
footer {
    background-color: #333;
    font-family: "Roboto Condensed", Tahoma, Geneva, sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    color: #999;
    padding: 10px 60px 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
}

.footer-links div {
    margin-bottom: 20px;
    margin-right: 40px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    display: block;
    padding: 15px 100px 10px 0;
    border-bottom: 1px solid #666;
}

.footer-links a:hover {
    color: #42af7d;
}

.footer-social img {
    height: 30px;
    padding-left: 10px;
}

.footer-social span {
    margin-right: 10px;
}

.footer-copyright {
    background-color: #222;
    border-top: 1px solid #666;
    height: 40px;
    padding-top: 20px;
}

.footer-copyright span {
    color: #999;
    font-size: 75%;
    padding-left: 60px;
}

.footer-copyright a {
    color: #ccc;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .logo img {
        max-width: 120px !important;
        max-height: 53px !important; /* Proportional height for mobile */
        height: 53px !important;
        width: auto !important;
    }

    .nav-links {
        display: none;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-links ul li {
        margin: 10px 0;
        padding-left: 0;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hamburger {
        display: flex;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links div {
        margin: 10px 0;
        margin-right: 0;
    }

    .footer-links a {
        padding: 10px 0;
        border-bottom: none;
    }

    .footer-social {
        margin-top: 20px;
        text-align: center;
    }

    .footer-copyright span {
        padding-left: 20px;
        font-size: 70%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 15px;
    }

    .logo img {
        max-width: 100px !important;
        max-height: 44px !important; /* Proportional height for phone */
        height: 44px !important;
        width: auto !important;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hamburger .line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .footer-social img {
        height: 25px;
    }

    .footer-copyright span {
        font-size: 65%;
    }
}