/* Lookbook Specific Styles */
.lookbook-main {
    background-color: #ffffff;
    font-family: 'Georgia', serif;
}

.lookbook-hero {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.lookbook-hero-content h1 {
    font-size: 3rem;
    font-weight: normal;
    color: #034948;
    margin-bottom: 10px;
}

.lookbook-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.lookbook-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.lookbook-item {
    background-color: #fff;
    border: 1px solid #eee;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.lookbook-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lookbook-item img {
    width: 100%;
    height: auto;
    display: block;
}

.lookbook-item-description {
    padding: 20px;
}

.lookbook-item-description h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
}

.lookbook-item-description p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lookbook-hero-content h1 {
        font-size: 2.5rem;
    }

    .lookbook-hero-content p {
        font-size: 1.1rem;
    }

    .lookbook-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .lookbook-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lookbook-hero-content h1 {
        font-size: 2rem;
    }

    .lookbook-hero-content p {
        font-size: 1rem;
    }
}