/* Lookbook Specific Styles */

/* Black background for lookbook page */
.black-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -2;
}

/* Logo positioning and sizing to match homepage */
.hero-logo {
    height: 42px;
    width: auto;
    position: fixed;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-logo {
        content: none !important;
        position: fixed;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        height: 42px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 43px;
        width: auto;
        top: calc(50% - 2px);
    }
}

@media (min-width: 1200px) {
    .hero-logo {
        height: 48px;
        width: auto;
    }
    
    .gallery {
        max-width: 50%;
        margin-left: auto;
        margin-right: 48px;
    }
    
    .pricing-link {
        font-size: 18px;
    }
}

/* Fixed Request Pricing Button - matches homepage styling */
.fixed-pricing-button {
    position: fixed;
    bottom: 48px;
    left: 48px;
    z-index: 10;
}

.pricing-link {
    color: #FAF9F9;
    text-decoration: none;
    border: 1px solid rgba(250, 249, 249, 0.3);
    padding: 0 20px;
    height: 53px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.28px;
    line-height: 0.9;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.pricing-link:hover {
    background: #FAF9F9;
    color: #000;
}

/* Mobile responsive button positioning */
@media (max-width: 768px) {
    .fixed-pricing-button {
        bottom: 24px;
        left: 16px;
        padding-left: 0;
    }
}

.lookbook-content {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.lookbook-wrapper {
    max-width: 1200px;
    width: 100%;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 128px;
    max-width: 50%;
    margin-left: auto;
    margin-right: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .lookbook-content {
        padding: 1.5rem 1rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .lookbook-content {
        padding: 1rem;
    }
    
    .gallery {
        gap: 48px;
    }
}

/* Large screens - images remain stacked vertically */

/* Add some animation for loading */
.gallery-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}