/* ===========================
   GLOBAL STYLING
=========================== */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1; /* Fills the space between header and footer */
    padding-top: 100px; /* Matches header height including padding */
}

/* ===========================
   HEADER STYLING
=========================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.header .logo img {
    max-height: 80px;
    width: auto;
}

.nav {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.nav a:hover {
    color: #c9a14c;
}

.nav-login-btn {
    background: #c9a14c;
    color: #000 !important;
    padding: 6px 16px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s !important;
}

.nav-login-btn:hover {
    background: #a8832e !important;
    color: #000 !important;
}

/* ===========================
   HEADER RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ===========================
   FOOTER STYLING
=========================== */
.footer {
    background-color: black;
    color: white;
    padding: 40px 20px 20px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1 1 300px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.footer-left .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-left .logo img {
    width: 100%;
    max-width: 80px;
    height: auto;
}

.footer-left h3.stay-connected {
    font-weight: 400;
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.footer-left p {
    font-size: 14px;
    margin: 3px 0;
}

.footer-left a {
    color: #ccc;
    text-decoration: none;
}

.footer-left a:hover {
    color: white;
}

.footer-right {
    flex: 1 1 300px;
    min-width: 250px;
    max-width: 100%;
    align-self: flex-start;
}

.footer-right iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    border: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 12px;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* ===========================
   FOOTER RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-left, .footer-right {
        min-width: 100%;
        text-align: center;
        align-items: center;
    }

    .social-icons, .footer-links {
        justify-content: center;
    }
}