body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/* HEADER LOGO */
#header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mainLogo {
    width: 250px;
    transition: all 0.5s ease;
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* NAV LISTS */
#navbar ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0 40px;
    padding: 0;
}

#navbar a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    position: relative;
}

/* Underline */
#navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: black;
    transform: scaleX(0.6);
    opacity: 0.4;
}

/* CENTER LOGO IN NAV */
#navLogo {
    width: 80px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* HEADER LOGO */
#mainLogo {
    width: 250px;
    transition: all 0.5s ease;
}


/* SECTIONS */
section {
    padding: 80px 20px;
    text-align: center;
}

/* REELS */
.reels-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reels-container iframe {
    width: 300px;
    height: 500px;
    border: none;
}

/* INTERVIEWS */
.interview-card {
    margin: 40px auto;
    max-width: 600px;
}

.interview-card img {
    width: 100%;
    border-radius: 10px;
}

blockquote {
    font-style: italic;
    margin-top: 15px;
}

/* CONTACT */
.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    width: 250px;
    text-align: center;
}

.team-card img {
    width: 100%;
    border-radius: 10px;
}

/* SHOP */
.product-card {
    max-width: 400px;
    margin: auto;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #333;
}

/* HAMBURGER BUTTON */
#hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-right: 20px;
}

#hamburger span {
    width: 25px;
    height: 3px;
    background: black;
    transition: 0.3s;
}

/* MOBILE MENU (hidden by default) */
#mobileMenu {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 70px; /* directly under navbar */
    left: 0;
    z-index: 999;
}

#mobileMenu.active {
    display: flex;
}

#mobileMenu a {
    padding: 18px 0;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    width: 100%;
}



/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    #navbar {
        position: fixed;
        top: -120px;
        left: 0;
        width: 100%;
        height: 70px; /* define a fixed height so centering is reliable */
        display: flex;
        align-items: center;
        justify-content: flex-end; /* hamburger stays right */
        padding: 0 20px;
    }

    #navLogo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.7);
        width: 55px;
        max-height: 55px;
        opacity: 0;
        pointer-events: none;
    }

    #navLogo.scrolled {
        transform: translate(-50%, -50%) scale(0.9);
    }
}


