/* Layout Components CSS */

/* Page Layout Adjustments */
.page-content {
    margin-left: 0;
    min-height: 100vh;
}

/* Split Screen Layout */
.split-screen {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 100vh;
    padding-left: 0;
}
.sticky-content {
    position: sticky;
    top: 0;
    height: 100vh;
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-content {
        margin-left: 0;
    }

    .split-screen {
        grid-template-columns: 1fr;
    }
    .sticky-content {
        position: relative;
        height: auto;
    }

    /* Center section titles on mobile */
    .page-content h2 {
        text-align: center;
    }
} 