/* MOBILE FIRST */

/* Base reset & box model */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/manrope/manrope-latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/manrope/manrope-latin-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    position: relative;
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #fff;
    text-decoration: none;
}

/* HEADER STYLES */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}

.header-content {
    display: flex;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 14px 16px;
    margin: 0 auto;
}

/* NAVIGATION STYLES */
.nav-list {
    display: flex; /* 🔥 ставить список в ряд */
    gap: 24px; /* 🔥 відстань між пунктами */
    list-style: none; /* прибираємо маркери */
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.nav a {
    display: inline-flex;
    align-items: center;
}

/* LOGO STYLES */
.logo {
    margin-right: auto;
    font-size: 20px;
}

.logo .amp {
    background: linear-gradient(135deg,
            #E6C97A,
            #B8963D,
            #8F6E25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo .amp {
    margin-right: 0.15em;
    position: relative;
}

.logo {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.397);
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative; /*font-size: 18px;*/
    line-height: 1.3;
    font-weight: 400;
    min-height: 100vh; /* Весь екран по висоті */
    width: 100%;
    background-image: url("/assets/img/eninterieur_hero.webp");
    background-size: cover; /* 🔑 головне */
    background-position: center top; /* по центру */
    background-repeat: no-repeat;
    margin: 0 auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.15));
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2rem;
    min-width: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero {
        background-position: center;
        font-size: 24px;
        font-weight: 400;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        color: #fff;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        font-size: 33px;
    }

    .nav-list {
        font-size: 16px;
    }
}

.hero-copyright {
    position: absolute;
    left: 50%;
    bottom: 0; /* прям низ hero */
    transform: translateX(-50%);
    margin: 0;
    padding: 12px 0; /* щоб не прилипав */
    z-index: 2;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    pointer-events: none;
}