/* LOOKBOOK PAGE STYLES */


.lookbook-description {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 0 30px 0;
}

.main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #222;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.lookbook-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55vw;
    min-height: 350px;
    max-height: 600px;
}

.lookbook-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.lookbook-hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    margin: 0;
    text-align: center;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lookbook-gallery {
    display: flex;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    padding: 0;
    border: none;
    background: #FEFEFE;
    background: linear-gradient(180deg, rgba(254, 254, 254, 1) 75%, rgba(227, 221, 225, 1) 100%);
}

.lookbook-gallery__img {
    width: 33.3333vw;
    min-width: 0;
    height: 32vw;
    object-fit: contain;
    display: block;
    margin: 0;
    border: none;
}

@media (max-width: 900px) {
    .lookbook-hero__title {
        font-size: 2.1rem;
    }

    .main-description {
        font-size: 1.1rem;
    }

    .lookbook-gallery__img {
        height: 28vw;
    }
}

@media (max-width: 600px) {
    .lookbook-hero {
        height: 38vw;
        min-height: 180px;
        max-height: 250px;
    }

    .lookbook-hero__title {
        font-size: 1.2rem;
    }

    .main-description {
        font-size: 0.95rem;
    }

    .lookbook-gallery__img {
        height: 22vw;
    }

    .lookbook-description {
        margin: 20px 0 15px 0;
    }
}

* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
    font-weight: 100;
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header__logo {
    height: 20px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    margin: 0;
}

.header__link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: #000;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header__icon:hover {
    opacity: 0.7;
}

/* FOOTER */

.footer {
    background-color: #000;
    color: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 100px;
}

.newsletter-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
    cursor: pointer;
}

.newsletter-legal {
    font-size: 11px;
    line-height: 1.5;
    color: #aaa;
    max-width: 420px;
    margin-bottom: 10px;
}

.newsletter-lang {
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
}

.footer-info {
    font-size: 13px;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li,
.footer-column p {
    font-size: 13px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-logo {
    border-top: 1px solid #222;
    padding: 40px 0;
}

.footer-logo img {
    width: 90%;
    display: block;
    margin: auto;
}