/* SCENE hair & spa - Custom Styles (Minimalist Edition) */

:root {
    --bg-white: #ffffff;
    --text-black: #1a1a1a;
    --text-muted: #666666;
    --accent-color: #333333;
    --soft-border: #eeeeee;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 2;
    letter-spacing: 0.1em;
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-black);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography Adjustments */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.25em !important;
    text-transform: uppercase;
    font-weight: 300;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s ease 1s forwards;
}

.animate-scroll-line {
    animation: scrollLine 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* Header Refinement */
#header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* CTA Buttons - High-End Minimal */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: transparent;
    border: 1px solid var(--text-black);
    color: var(--text-black);
    text-align: center;
}

@media screen and (min-width: 782px) {
    .cta-button {
        padding: 1.2rem 2rem;
        min-width: 260px;
    }
}

.cta-button:hover {
    background-color: var(--text-black);
    color: white;
}

/* Section Margins */
.section-margin-bottom {
    margin-bottom: 0px;
}

/* Swiper Fixes */
.swiper-pagination-bullet {
    background: #000 !important;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* ── Mobile: Unified padding ── */
@media screen and (max-width: 781px) {
    h2 {
        font-size: 30px !important;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: none !important;
    }

    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .p-6,
    .p-8 {
        padding: 40px 16px !important;
    }

    .mobile-br {
        display: inline;
    }
}

@media screen and (min-width: 782px) {
    .mobile-br {
        display: none;
    }
}

/* ── Spacer Section ── */
.bg-spacer {
    height: 400px;
    background-size: cover;
}

@media screen and (min-width: 782px) {
    .bg-spacer {
        height: 600px;
        background-size: 100% auto;
    }
}