:root {
    --primary-yellow: #FFD700;
    --border-color: #000000;
    --nav-bg: #FFFFFF;
    --btn-bg: #FF4500;
    /* Orange-Red */
    --icon-bg: #FF6347;
    /* Tomato */
    --text-color: #000000;
    --font-main: 'Luckiest Guy', cursive;
    --font-secondary: 'Comic Neue', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-yellow);
    font-family: var(--font-main);
    color: var(--text-color);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Navbar Styling */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-container {
    background-color: var(--nav-bg);
    border: 3px solid var(--border-color);
    border-radius: 10px;
    /* Slight rounding */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    box-shadow: 4px 4px 0px var(--border-color);
    /* Comic shadow effect */
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0 20px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.nav-links li a:hover {
    transform: scale(1.1);
    color: var(--btn-bg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background-color: var(--btn-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 0px var(--border-color);
}

.cta-btn {
    background-color: var(--btn-bg);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 0px var(--border-color);
}

/* Hero Section Styling */
.hero-section {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.banner-frame {
    border: 5px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    background-color: #000;
    /* Fallback */
    box-shadow: 8px 8px 0px var(--border-color);
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        /* Align logo and hamburger to top/sides */
        position: relative;
        padding: 10px 20px;
    }

    .logo {
        z-index: 100;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 100;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--nav-bg);
        width: 100%;
        height: 100vh;
        /* Full height */
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        justify-content: center;
        gap: 20px;
        z-index: 90;
        /* Below hamburger */
        border-right: 3px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        margin: 0;
        gap: 20px;
    }

    .nav-actions {
        flex-direction: column;
        width: auto;
        gap: 15px;
    }
}