/* ====== FONT FACES ====== */
@font-face {
    font-family: 'Klein';
    src: url('./Klein-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Klein';
    src: url('./Klein-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Klein';
    src: url('./Klein-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Klein', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    
    margin: 0 auto;
    padding: 0 40px;
}

/* ====== HEADER ====== */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.btn-profile {
    background-color: transparent;
    border: 1px solid #000;
    padding: 15px 25px;
    border-radius: 30px;
    font-family: 'Klein', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-profile:hover {
    background-color: #000;
    color: #fff;
}

/* ====== HERO SECTION - ИСПРАВЛЕННЫЙ ВАРИАНТ ====== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./99a746eb6e70ef7ce7d128414d9519cdb67978e4.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;        /* прижимаем контент вниз */
    justify-content: flex-start;  /* прижимаем контент влево */
    padding: 0 0 80px 80px;   
        /* отступы снизу и слева */
}

.hero-content {
    position: static;             /* больше не absolute */
    color: #000;                  /* основной цвет текста — чёрный */
    text-align: left;             /* выравнивание влево */
    z-index: 2;
    max-width: 600px;
    padding-bottom: 60px;
}

/* Текст и кнопка */
.hero-text h1 {
    font-size: 100px;
    font-weight: 100;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: #000;                  /* чёрный заголовок */
    line-height: 1.1;
}

.hero-text p {
    font-size: 28px;

    margin-bottom: 30px;
    color: #000;                  /* чёрный подзаголовок */
    font-weight: 100;
}

/* Кнопка — чёрная версия */
.hero-text .btn-profile {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;                  /* чёрный текст кнопки */
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-text .btn-profile:hover {
    background-color: #000;
    color: #fff;
}

/* Если фон очень светлый и текст плохо читается — можно добавить полупрозрачную подложку */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;                  /* градиент только снизу */
    background: linear-gradient(to top, rgba(255,255,255,0.85), transparent);
    z-index: 1;
    pointer-events: none;
}
/* ====== FEATURES SECTION ====== */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features h2 {
    font-size: 92px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    padding-right: 80px;
    color: #d3d3d3;
    letter-spacing: 1px;
}

.features-subtitle {
    text-align: left;
    font-size: 23px;
    color: #000;
    margin-bottom: 50px;
    padding-left: 1100px;
    max-width: 1900px;
    font-weight: 100;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    overflow: hidden;
    
}

.feature-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

/* ====== BENEFITS SECTION ====== */
.benefits {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.benefit-item h3 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-item p {
    font-size: 22px;
    color: #000;
    font-weight: 100;
    line-height: 1.2;
    max-width: 400px;
}

/* ====== WARDROBE SECTION ====== */
.wardrobe {
    padding: 80px 0;
    background-color: #fff;
}

.wardrobe h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.wardrobe > .container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
}

.wardrobe-image {
    width: 100%;
    overflow: hidden;
    
}

.wardrobe-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ====== CATWALK SECTION ====== */
.catwalk {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.catwalk h2 {
    font-size: 68px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.catwalk p {
    font-size: 24px;
    color: #000;
    font-weight: 100;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== FOOTER ====== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 18px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 18px;
    color: #999;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        height: 100vh;
        min-height: 680px;
        padding: 0 0 100px 25px;     /* ← увеличил нижний отступ */
        background-position: 65% center;
        align-items: flex-end;        /* прижимаем вниз */
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 20px;         /* дополнительный отступ */
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-image {
        height: 400px;
    }

    .mirror-frame {
        width: 200px;
        height: 350px;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .features h2,
    .wardrobe h2,
    .catwalk h2 {
        font-size: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    @media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* HEADER - прячем кнопку ТОЛЬКО в хедере */
    .header .btn-profile {
        display: none;
    }

    /* Логотип по центру */
    .header-content {
        justify-content: center;
        position: relative;
    }

    .logo {
        position: static;
        transform: none;
    }

    .logo img {
        height: 32px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    /* HERO - кнопка остаётся видимой */
    .hero .btn-profile {
        display: inline-block;   /* явно показываем */
    }

    /* HERO */
    .hero {
        height: 70vh;
        min-height: 620px;
        padding: 0 0 50px 20px;
        background-position: 67%;

    }

    .hero-text h1 {
        font-size: 48px;
        line-height: 1.05;
    }

    .hero-text p {
        font-size: 21px;
    }
.hero::before {
        height: 60%;                  /* сильнее градиент снизу */
        background: linear-gradient(to top, rgba(255,255,255,0.96), rgba(255,255,255,0.65), transparent);
    }
}   
    /* FEATURES */
    .features h2 {
        font-size: 48px;
        padding-right: 0;
        text-align: left;
    }

    .features-subtitle {
        padding-left: 0 !important;
        text-align: left;
        font-size: 20px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        width: 100% !important;
    }

    .feature-card img {
        height: 240px;
    }

    /* BENEFITS */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefit-item h3 {
        font-size: 42px;
    }

    .benefit-item[style*="padding-top"] {
        padding-top: 0 !important;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .logo img {
        height: 28px;
    }

    .hero .btn-profile {
        padding: 14px 28px;
        font-size: 15px;
    }
}
}