/*
Theme Name: Snezha
Description: Custom theme for snezhausmanova.ru
Version: 1.0
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 80px;
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 50px;
}
.site-header .logo img {
    height: 50px;
    width: auto;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background-image: url('https://static.tildacdn.com/tild3133-6139-4366-b565-323031346465/5892f5607de4e0004ba9.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 100px 20px 60px;
    max-width: 800px;
}
.hero__title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}
.hero__subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}
.hero__caption {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}
.btn-tg {
    display: inline-block;
    padding: 16px 48px;
    background: #3badeb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.btn-tg:hover { background: #2a95d0; }

/* ── Inner pages ── */
.site-main {
    padding: 120px 20px 80px;
    max-width: 860px;
    margin: 0 auto;
    min-height: 100vh;
}
.site-main h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}
.site-main h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: #e0e0e0;
}
.site-main p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
}

/* ── Footer ── */
.site-footer {
    background: #000;
    padding: 32px 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-socials a img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.footer-socials a:hover img { opacity: 1; }
.footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: #fff; }
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-align: center;
}
@media (max-width: 640px) {
    .site-header { padding: 0 20px; }
    .site-footer { padding: 24px 20px; }
    .footer-links { flex-direction: column; align-items: center; gap: 10px; }
}
