/* ============================================================
   KOOKKAI INDIAN MAKEUPARTIST — style.css
   ============================================================ */

/* ── Variablen ──────────────────────────────────────────── */
:root {
    --bg: #fff8f3;
    --surface: #ffffff;
    --text: #1f1b1a;
    --muted: #6d5f5b;
    --text-dark: #4f453d;
    --text-badge: #54473f;
    --primary: #c76b5d;
    --primary-dark: #9f4e43;
    --accent: #d9a441;
    --accent-a: #cf744d;
    --accent-b: #e1af4c;
    --accent-c: #f7e6cb;
    --border-color: rgba(120, 95, 70, 0.1);
    --line: #eadfd8;
    --shadow: 0 18px 50px rgba(31, 27, 26, .08);
    --radius: 20px;
    --radius-xl: 28px;
}

/* ── Reset & Basis ──────────────────────────────────────── */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201, 107, 93, .12), transparent 26%),
        radial-gradient(circle at top right, rgba(217, 164, 65, .14), transparent 22%),
        var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* iOS/macOS Safari */
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Layout ─────────────────────────────────────────────── */
.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ── Header & Navigation ────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 248, 243, .82);
    border-bottom: 1px solid rgba(234, 223, 216, .75);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);

}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 1.1rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .95rem;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── Burger-Button ──────────────────────────────────────── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.burger:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid transparent;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 12px 30px rgba(199, 107, 93, .22);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--line);
    background: rgba(255, 255, 255, .75);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    padding: 72px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 32px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 6.3rem);
    line-height: 1.02;
    letter-spacing: -1.2px;
    margin: 0 0 18px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 58ch;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .86));
    border: 1px solid rgba(234, 223, 216, .8);
    border-radius: var(--radius-xl);
    padding: 18px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    border-radius: 22px;
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* ── Social Metrics ─────────────────────────────────────── */
.metrics_social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 28px;
}

.metric_social {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.metric_social strong {
    color: var(--text);
}

/* ── Sections ───────────────────────────────────────────── */
section {
    scroll-margin-top: 80px;
    padding: 26px 0 70px;
}

.section-title {
    margin-bottom: 22px;
}

.section-title h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin: 0 0 8px;
}

.section-title p {
    color: var(--muted);
    margin: 0;
}

/* ── Grid & Cards ───────────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(234, 223, 216, .9);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.services .card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

/* ── Gallery ────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 22px;
    overflow: hidden;
    min-height: 240px;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid rgba(234, 223, 216, .9);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .88);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 700;
}

/* ── Contact ────────────────────────────────────────────── */
.contact-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
}

.panel {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel-inner {
    padding: 28px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-badge);
    font-weight: 700;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}

.lead-box h3 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    line-height: 1.02;
    margin: 0 0 12px;
}

.lead-box p {
    margin: 0;
    max-width: 56ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--border-color);
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    box-shadow: 0 10px 22px rgba(205, 113, 75, 0.18);
}

.icon img {
    width: 25px;
    height: 25px;
}

.item-text strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.item-text span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.microcopy {
    margin-top: 14px;
    font-size: 0.92rem;
    color: var(--muted);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
    padding: 30px 0 50px;
    color: var(--muted);
    border-top: 1px solid rgba(234, 223, 216, .85);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 12px 30px rgba(199, 107, 93, .22);
    font-size: 28px;
    text-decoration: none;
    z-index: 1000;
}

/* ── 404 Page ───────────────────────────────────────────── */
.error-number {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-404 {
    min-height: 100dvh;
}

/* ── Responsive: Tablet (≤ 960px) ───────────────────────── */
@media (max-width: 960px) {

    .hero-grid,
    .grid-3,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 460px;
        margin: auto;
    }

    .hero-image {
        max-width: 100%;
    }

    .gallery-item {
        max-width: 460px;
        margin: auto;
    }

    /* Nav: Burger-Modus */
    .nav {
        flex-wrap: wrap;
        align-items: center;
    }

    .burger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        gap: 8px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav .btn {
        display: none;
    }
}

/* ── Responsive: Mobile (≤ 640px) ───────────────────────── */
@media (max-width: 640px) {
    .hero {
        padding-top: 46px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }
}