/* styles.css */

/* Базовые стили */
body {
    font-family: 'SF Pro Display', 'SF Pro', sans-serif;
    background-color: #09090B;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 32px;
}

/* Стили шапки */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 16px;
}

.nav-item {
    font-size: 14px;
    font-weight: 510;
    text-decoration: none;
    color: white;
}

/* Стили основного контента */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    gap: 96px;
}

.hero {
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 590;
}

h1 {
    font-size: 96px;
    font-weight: 600;
    margin: 30px 0;
}

.subtitle {
    font-size: 20px;
    color: #A1A1AA;
    max-width: 544px;
    margin: 0 auto 30px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 510;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.button-primary {
    background-color: white;
    color: #18181B;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: rgba(9, 9, 11, 0.01);
    color: #ffffff;
}

.image-container {
    position: relative;
    max-width: 1284px;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 0.90) 70%);
    border-radius: 16px;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }

    header {
        flex-direction: column;
        gap: 16px;
    }

    h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }
}

.relative-container {
    width: 1284px;
    height: 697px;
    position: relative;
}

.absolute-container-1 {
    width: 2233px;
    height: 290px;
    left: -453px;
    top: -556px;
    position: absolute;
    pointer-events: none;
}

.absolute-container-2 {
    width: 1095px;
    height: 289px;
    left: 545px;
    top: 566px;
    position: absolute;
    background: rgba(255, 136, 39, 0.6);
    box-shadow: 312px 312px 312px;
    border-radius: 9999px;
    filter: blur(312px);
}

.absolute-container-3 {
    width: 1095px;
    height: 148px;
    left: 545px;
    top: 571px;
    position: absolute;
    background: #ffa84b;
    box-shadow: 64px 64px 64px;
    border-radius: 9999px;
    filter: blur(64px);
}

.image-style {
    width: 1284px;
    height: 699px;
    left: 0px;
    top: -2px;
    position: absolute;
    border-radius: 16px;
}

.gradient-overlay {
    width: 1284px;
    height: 699px;
    left: 0px;
    top: -2px;
    position: absolute;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 0.90) 70%);
    border-radius: 16px;
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 36px;
    }
}

.nav-item a {
    text-decoration: none;
}
