/*
Theme Name: Maligind
Theme URI: https://malygind.ru
Author: Dmitriy Malygin
Author URI: https://malygind.ru
Description: Минималистичная тема-портфолио для сессионного музыканта
Version: 1.0
Text Domain: maligind
*/

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background-color: #0c0c0c;
    color: #ffffff;
    line-height: 1.5;
}

a {
    color: #1EB7D9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Шапка */

.site-header {
    background-color: #0c0c0c;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-text {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    color: #1EB7D9;
}

.header-phone a {
    color: #1EB7D9;
    font-weight: 600;
}

/* Меню */

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
}

.main-nav a:hover {
    color: #1EB7D9;
    text-decoration: none;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-inner {
    position: relative;
    display: flex;
    width: 100%;
    gap: 40px;
}

.hero-text {
    max-width: 520px;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    margin-top: 0;
    margin-bottom: 12px;
}

.hero-button {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 30px;
    border: 2px solid #1EB7D9;
    border-radius: 2px;
    color: #1EB7D9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hero-button:hover {
    background-color: #1EB7D9;
    color: #0c0c0c;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    opacity: 0.4;
    font-size: 26px;
}

/* Блок под hero */

.section-grey {
    background-color: #1a1a1a;
    padding: 60px 5vw;
}

.section-grey h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
}

/* Футер */

.site-footer {
    background-color: #000000;
    padding: 30px 5vw;
    color: #aaaaaa;
    font-size: 14px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

/* Контент страниц */

.page-wrapper {
    padding: 80px 5vw;
    max-width: 900px;
    margin: 0 auto;
}

/* Адаптив */

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
        background-position: center;
    }
}


