/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: #000000;
    font-family: system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* Base Wrapper */
.site-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('assets/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Desktop View */
.desktop-view {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-main-img {
    width: 80%;
    max-width: 1600px;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Mobile View Hidden by Default */
.mobile-view {
    display: none;
}

/* Responsive Breakpoint for Mobile */
@media (max-width: 768px) {
    html, body {
        height: auto;
        overflow-y: auto;
    }

    .site-container {
        background: #000000;
        min-height: 100%;
        display: block;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .mobile-main-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }
}
