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

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

/* HERO SECTION */
.hero {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    overflow: hidden;
    position: relative;
}

.hero__image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.5));
}

.hero__title {
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    margin: 0 0 16px 0;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero__subtitle {
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.18);
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* 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;
}

/* MAIN CONTENT */


/* COLLECTIONS */
.collections {
    margin: 0 auto;
    padding: 8px;
}

.collections__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.collections__item,
.collections__item:visited,
.collections__item:active,
.collections__item:hover,
.collections__item * {
    text-decoration: none !important;
    color: inherit;
}

.collections__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collections__item--full {
    width: 100%;
    aspect-ratio: 21/9;
}

.collections__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.collections__title {
    position: relative;
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

/* Overlay sutil */
.collections__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

/* 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;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .footer-top {
        padding: 40px 20px;
        gap: 30px;
    }
    .collections__row, .collections__item--full {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 16px 12px;
    }
    .header__menu {
        gap: 18px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding: 30px 10px;
    }
    .newsletter-title, .newsletter-text {
        max-width: 100%;
    }
    .collections__row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .collections__item {
        aspect-ratio: 16/9;
    }
    .collections__item--full {
        aspect-ratio: 16/9;
    }
    .collections__title {
        font-size: 18px;
        padding: 0 12px;
    }
    .hero__image, .hero__overlay {
        height: 50vh;
    }
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        padding: 8px 4px;
    }
    .header__logo {
        margin-bottom: 8px;
    }
    .header__nav {
        justify-content: flex-start;
    }
    .header__menu {
        flex-direction: column;
        gap: 8px;
    }
    .header__actions {
        gap: 8px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 4px;
    }
    .footer-logo img {
        width: 100%;
    }
    .collections {
        padding: 2px;
    }
    .collections__title {
        font-size: 14px;
        padding: 0 4px;
    }
    .collections__item, .collections__item--full {
        aspect-ratio: 16/10;
    }
    .hero__title {
        font-size: 1.2rem;
    }
    .hero__subtitle {
        font-size: 0.7rem;
    }
    .hero__image, .hero__overlay {
        height: 32vh;
    }
}