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

:root {
    --text: #ffffff;
    --muted: #f5f5f5;
    --line: rgba(255, 255, 255, 0.18);
    --accent: #ffffff;
    --btn-text: #111111;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-image: url("../images/alt zemin-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: -1;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background: rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-mark {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.logo-main {
    display: inline-block;
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    padding-top: 8px;
    padding-bottom: 2px;
    background: linear-gradient(90deg, #c89b3c, #fff1b8, #c89b3c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.18),
                 0 0 25px rgba(212, 175, 55, 0.12);
}

.logo-divider {
    width: 145px;
    height: 1px;
    margin: 1px auto 5px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.logo-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #f3e7c2;
    text-shadow: 0 0 8px rgba(255,255,255,0.25),
                 0 0 18px rgba(212,175,55,0.35),
                 0 0 28px rgba(212,175,55,0.25);
    animation: subtitleMotion 1.8s ease-in-out infinite;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background-image: url("../images/alt zemin-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 44px;
    padding-top: 108px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 16px 30px;
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
}

.hero-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    opacity: 1;
}

.hero-copy {
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-kicker {
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f3e7c0;
}

.hero-copy h1 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.08;
    max-width: 980px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.hero-description {
    max-width: 760px;
    font-size: 18px;
    color: #f3f3f3;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 16px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    font-weight: 700;
    transition: all 0.25s ease;
}

.hero-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.16);
}

/* About */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.section-label {
    display: inline-block;
    font-family: 'Allura', cursive;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.2px;
    color: #f3e7c2;
    margin-bottom: 14px;
}

.about-text h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted);
}

.about-text p + p {
    margin-top: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--line);
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.follow-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.follow-section img {
    width: auto;
    max-width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* Footer */
.site-footer {
    padding: 20px 0 30px;
    background: transparent;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.follow-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: all 0.25s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.03);
    background: #ffffff;
    border-color: #ffffff;
}

.social-icon:hover svg {
    fill: #111111;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border-color: transparent;
}

.social-icon.instagram:hover svg,
.social-icon.facebook:hover svg,
.social-icon.youtube:hover svg,
.social-icon.linkedin:hover svg {
    fill: #ffffff;
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-icon.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.social-icon.mail:hover {
    background: #c89b3c;
    border-color: #c89b3c;
}

.footer p {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.02em;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes subtitleMotion {
    0%, 100% {
        opacity: 0.88;
        transform: translateY(0) scale(1);
        text-shadow: 0 0 8px rgba(255,255,255,0.25),
                     0 0 18px rgba(212,175,55,0.35),
                     0 0 28px rgba(212,175,55,0.25);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px) scale(1.06);
        text-shadow: 0 0 10px rgba(255,255,255,0.35),
                     0 0 24px rgba(212,175,55,0.55),
                     0 0 38px rgba(212,175,55,0.40);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: clamp(30px, 9vw, 46px);
    }

    .hero-description {
        font-size: 16px;
    }

    .nav {
        min-height: 88px;
        padding: 8px 0;
    }

    .logo-main {
        font-size: 42px;
        padding-top: 6px;
    }

    .logo-divider {
        width: 120px;
        margin: 0 auto 4px;
    }

    .logo-sub {
        font-size: 11px;
        letter-spacing: 3.5px;
    }

    .hero-content {
        padding-top: 88px;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
}

@media (max-width: 640px) {
    .social-icon {
        width: 48px;
        height: 48px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .follow-icons {
        gap: 10px;
    }

    .footer p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-copy {
        gap: 14px;
        margin-bottom: 16px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-link,
    .hero-btn {
        width: 100%;
    }

    .logo-main {
        font-size: 34px;
    }

    .logo-divider {
        width: 96px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 2.6px;
    }

    .hero-btn {
        min-width: 210px;
        padding: 15px 24px;
        font-size: 15px;
    }

    .about-section {
        padding: 72px 0;
    }

    .about-text {
        padding: 0;
    }

    .about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}
}


h1,
h2,
h3,
h4,
h5,
h6,
.logo-sub {
    font-family: 'Dancing Script', cursive;
}
