/* Import components */
@import url('components/header.css');
@import url('components/footer.css');


/* Global container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Home Page Styles */
body.home #gallery-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

body.home .hero {
    width: 100vw;
    position: relative;
    left: 0;
    right: 0;
    top: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    margin-top: 120px;
    z-index: 5;
    background: rgba(255, 255, 255, 0);
}

body.home .hero-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

body.home .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Work Page Styles */
body.work .main-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
    flex: 1;
    padding: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 2rem auto;
    animation: fadeIn 0.3s ease-out both;
}

body.work .clients-container {
    display: grid;
    width: 100%;
    margin: 0 auto;
    gap: var(--spacing-lg);
}

/* Contact Page Styles */
body.contact .content-section {
    flex: 1;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 60vh;
}



/* Responsive Design */
@media (max-width: 768px) {
    body.home .hero {
        width: 100vw;
        position: relative;
        left: 0;
        right: 0;
        top: 180px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: var(--spacing-lg) 0;
        margin-top: 120px;
        z-index: 5;
        background: rgba(255, 255, 255, 0);
    }

    body.home .hero-image {
        height: 300px;
    }

    .logo img {
        width: 320px;
    }
}

@media (min-width: 1024px) {
    body.home .hero-image {
        height: 500px;
    }
}