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

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #0c1a30;
}

/* --- THE FIX: Hide the Checkbox/Radio Button --- */
#menu-toggle {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

/* --- Seamless Background Logic --- */
.site-header, .hero-section {
    background-image: url('https://new.kaleidescapesoflight.com/images/background.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed; /* Keeps image still while scrolling */
}

/* --- Header & Logo --- */
.site-header {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    mix-blend-mode: multiply;
    display: block;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
}

/* --- Menu Bar --- */
.main-menu {
    background-color: rgba(12, 26, 48, 0.9); /* Dark Blue Overlay */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.menu-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.menu-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.menu-links a:hover {
    color: #00d4ff;
}

/* --- Hero Content --- */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.8);
}

/* --- Mobile Menu --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        cursor: pointer;
        margin: 0 auto;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        margin-bottom: 5px;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .menu-links li {
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Logic to show menu when hidden checkbox is clicked */
    #menu-toggle:checked ~ .menu-links {
        display: flex;
    }
}
