/* BASE STYLES */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f3ef;
    color: #333;
}

/* HEADER */
header {
    background: white;
    padding: 12px 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.logo img {
    height: 50px;
}

/* SEARCH */
input {
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

/* IMAGE SECTIONS */
.image-section img {
    width: 100%;
    display: block;
}

/* Footer base styles */
footer {
    background: #eee;
    padding: 40px 20px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
    /* allow wrapping */
}

.footer-logo img {
    height: 100px;
}

footer h3 {
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    color: #333;
    display: block;
    margin: 10px 0;
}

.footer-title-section {
    font-size: large;
    font-weight: bold;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

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

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

/* MOBILE RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        /* stack columns */
        align-items: center;
        /* center content */
        text-align: center;
        /* center text */
        gap: 0px;
        /* space between stacked items */
    }

    .footer>div {
        width: 100%;
        /* full width for each section */
        /* margin-bottom: 5px; */
    }

    .footer-logo img {
        height: 80px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 60px;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }

    footer h3 {
        font-size: 16px;
    }

    footer p {
        font-size: 14px;
    }
}

/* NAVIGATION */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* allow wrapping on small screens */
}

/* MENU */
nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a.active {
    color: #0a0a0a;
    font-weight: bold;
    border-bottom: 2px solid darkorange;
    padding-bottom: 4px;
}

.hamburger {
    display: none;
    /* hidden on desktop */
}

/* SEARCH */
input {
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
        /* always on top */
        position: relative;
        /* stays above menu */
    }

    .hamburger span {
        height: 3px;
        width: 25px;
        background: #333;
        border-radius: 2px;
        transition: 0.3s;
    }

    nav {
        position: fixed;
        /* make menu slide over screen */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        /* hide offscreen */
        transition: transform 0.3s ease;
        z-index: 1000;
        /* below hamburger */
    }

    nav a {
        margin: 0;
        font-size: 20px;
    }

    nav.active {
        transform: translateX(0);
        /* slide in when active */
    }

    input {
        width: 100%;
        margin: 10px 0;
    }
}


/* Optional: hamburger turns into X when menu active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* overlapping image buttons */
.image-container {
    position: relative;
    width: 100%;
}

.bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-image-1 {
    position: absolute;
    top: 35%;
    left: 13%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 40px;
}

.overlay-image-2 {
    position: absolute;
    top: 35%;
    left: calc(13% + 270px);
    transform: translate(-50%, -50%);
    width: 240px;
    height: 40px;
}

/* overlapping image buttons on Mobile layout */
@media (max-width: 768px) {
    .overlay-image-1 {
        top: 37%;
        left: 20%;
        width: 120px;
        height: 23px;
    }

    .overlay-image-2 {
        top: 50%;
        left: 20%;
        width: 120px;
        height: 23px;
    }
}

/* Coming Soon Section */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    max-width: 100%;
    height: 700px;
    text-align: center;
}