/* ===  LA BELLA FRISEUR — Rose Gold Design  === */

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

:root {
    --bg: #fdf6f0;
    --bg2: #faeae0;
    --rose: #c9924e;
    --rose-light: #e8b87a;
    --rose-dark: #a0703a;
    --cream: #fff8f2;
    --dark: #1e110a;
    --card-bg: #ffffff;
    --card-bdr: rgba(201, 146, 78, 0.18);
    --card-bdr-h: rgba(201, 146, 78, 0.5);
    --muted: rgba(30, 17, 10, 0.45);
    --radius: 18px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

html,
body {
    min-height: 100vh;
    min-height: 100dvh;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

/* ================================================
   PAGE WRAPPER
   ================================================ */
.page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 52px;
    background: linear-gradient(180deg, #faeae0 0%, #fdf6f0 38%, #fff8f2 100%);
}

/* ================================================
   HERO — Banner image
   ================================================ */
.hero {
    width: 100%;
    position: relative;
    line-height: 0;
    animation: fadeIn .5s ease both;
}

.hero-img {
    width: 100%;
    display: block;
    aspect-ratio: 4.5 / 1;
    object-fit: cover;
    object-position: center;
}

/* Bottom fade into page bg */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #faeae0);
    pointer-events: none;
}


/* ================================================
   LOGO overlapping the hero bottom
   ================================================ */
.logo-wrap {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose);
    background: #fff;
    box-shadow:
        0 0 0 5px rgba(201, 146, 78, .18),
        0 8px 32px rgba(201, 146, 78, .25);
    margin: -46px auto 0;
    position: relative;
    z-index: 10;
    animation: fadeUp .6s ease .1s both;
    display: block;
}

.logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

@media (max-width: 480px) {
    .hero-img {
        aspect-ratio: auto;
        height: auto;
    }

    .logo-wrap {
        margin-top: -15px;
        /* Slight overlap suited for the larger image */
    }
}

/* ================================================
   HEADER TEXT
   ================================================ */
header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 24px 0;
    gap: 6px;
}

.salon-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 8vw, 38px);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .06em;
    text-align: center;
    animation: fadeUp .6s ease .2s both;
}

.divider-line {
    width: 52px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    border-radius: 2px;
    animation: fadeUp .6s ease .25s both;
}

.claim {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rose);
    text-align: center;
    animation: fadeUp .6s ease .3s both;
}

/* ================================================
   MAIN
   ================================================ */
main {
    width: 100%;
    max-width: 460px;
    padding: 28px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ================================================
   SECTION LABELS
   ================================================ */
.section-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rose-dark);
    opacity: .7;
    padding: 8px 2px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeUp .5s ease both;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 146, 78, .3), transparent);
}

.section-label::before {
    background: linear-gradient(270deg, rgba(201, 146, 78, .3), transparent);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 15px 44px 15px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--dark);
    background: var(--card-bg);
    border: 1px solid var(--card-bdr);
    box-shadow:
        0 2px 12px rgba(201, 146, 78, .1),
        0 1px 3px rgba(0, 0, 0, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    animation: fadeUp .55s ease both;
    position: relative;
    overflow: hidden;
}

/* Chevron arrow */
.btn::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid var(--rose);
    border-right: 1.5px solid var(--rose);
    transform: translateY(-50%) rotate(45deg);
    opacity: .5;
    transition: opacity .18s, right .18s;
}

.btn:active {
    transform: scale(.975);
}

@media (hover: hover) {
    .btn:hover {
        border-color: var(--card-bdr-h);
        box-shadow: 0 6px 24px rgba(201, 146, 78, .2), 0 2px 6px rgba(0, 0, 0, .06);
        transform: translateY(-2px);
    }

    .btn:hover::after {
        opacity: .9;
        right: 15px;
    }
}

/* Stagger */
main>*:nth-child(1) {
    animation-delay: .13s;
}

main>*:nth-child(2) {
    animation-delay: .18s;
}

main>*:nth-child(3) {
    animation-delay: .23s;
}

main>*:nth-child(4) {
    animation-delay: .28s;
}

main>*:nth-child(5) {
    animation-delay: .33s;
}

main>*:nth-child(6) {
    animation-delay: .38s;
}

main>*:nth-child(7) {
    animation-delay: .43s;
}

main>*:nth-child(8) {
    animation-delay: .48s;
}

/* ——— PRIMARY: Termin buchen ——— */
.btn--primary {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-light) 100%);
    color: #fff;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(201, 146, 78, .4), 0 2px 8px rgba(0, 0, 0, .1);
}

.btn--primary::after {
    border-color: rgba(255, 255, 255, .6);
    opacity: .7;
}

.btn--primary .btn__sub {
    color: rgba(255, 255, 255, .7);
}

.btn--primary .btn__icon {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

@media (hover: hover) {
    .btn--primary:hover {
        box-shadow: 0 10px 32px rgba(201, 146, 78, .55);
        filter: brightness(1.05);
    }
}

/* ——— WHATSAPP ——— */
.btn--wa {
    background: #075e54;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(7, 94, 84, .3);
}

.btn--wa::after {
    border-color: rgba(255, 255, 255, .5);
}

.btn--wa .btn__sub {
    color: rgba(255, 255, 255, .65);
}

.btn--wa .btn__icon {
    background: rgba(255, 255, 255, .15);
}

@media (hover: hover) {
    .btn--wa:hover {
        background: #0a7062;
        box-shadow: 0 8px 28px rgba(7, 94, 84, .45);
    }
}

/* ——— INSTAGRAM ——— */
.btn--instagram {
    background: linear-gradient(135deg, #833ab4, #c13584, #fd1d1d, #fcb045);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(180, 40, 130, .25);
}

.btn--instagram::after {
    border-color: rgba(255, 255, 255, .5);
}

.btn--instagram .btn__icon {
    background: rgba(255, 255, 255, .18);
}

@media (hover: hover) {
    .btn--instagram:hover {
        filter: brightness(1.08);
        box-shadow: 0 8px 28px rgba(180, 40, 130, .4);
    }
}

/* ——— FACEBOOK ——— */
.btn--facebook {
    background: #1877f2;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(24, 119, 242, .25);
}

.btn--facebook::after {
    border-color: rgba(255, 255, 255, .5);
}

.btn--facebook .btn__sub {
    color: rgba(255, 255, 255, .65);
}

.btn--facebook .btn__icon {
    background: rgba(255, 255, 255, .18);
}

@media (hover: hover) {
    .btn--facebook:hover {
        background: #0f68e0;
        box-shadow: 0 8px 28px rgba(24, 119, 242, .4);
    }
}

/* ================================================
   ICON + TEXT
   ================================================ */
.btn__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(201, 146, 78, .1);
    color: var(--rose);
    transition: background .18s;
}

.btn__icon svg {
    width: 22px;
    height: 22px;
}

.btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn__label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
}

.btn__sub {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    padding: 0 24px;
    animation: fadeUp .6s ease .55s both;
}

footer a {
    color: var(--rose-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(160, 112, 58, .25);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}

footer a:hover {
    color: var(--rose);
    border-color: var(--rose);
}

.copyright {
    margin-top: 8px;
    font-size: 11px;
    color: #000;
    opacity: 1;
    letter-spacing: .04em;
}