/* ══════════════════════════════════════════════
   PausSpa – Beauty & Wellness styles
   Theme: Rose / Soft Gold
   ══════════════════════════════════════════════ */

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

:root {
    --rose: #c0779e;
    --rose-d: #a85e87;
    --gold: #d4a96a;
    --dark: #180a12;
    --deep: #28101e;
    --white: #ffffff;
    --grey: #9a8490;
    --grey-light: #f9f5f7;
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(24, 10, 18, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    text-decoration: none;
}

.logo-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--rose);
    color: var(--white) !important;
    border-radius: 100px;
    padding: 9px 22px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--rose-d) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 40%, #3d1228 0%, #180a12 65%);
    padding: 120px 24px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c0779e' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 119, 158, 0.15);
    color: var(--rose);
    border: 1px solid rgba(192, 119, 158, 0.3);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

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

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 36px;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(192, 119, 158, 0.4);
}

.btn-primary:hover {
    background: var(--rose-d);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(192, 119, 158, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ── Notice Band ── */
.notice-band {
    background: rgba(192, 119, 158, 0.1);
    border-top: 1px solid rgba(192, 119, 158, 0.2);
    border-bottom: 1px solid rgba(192, 119, 158, 0.2);
    padding: 14px 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.notice-band .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notice-icon {
    font-size: 18px;
}

/* ── Sections ── */
.section {
    padding: 100px 24px;
}

.section-alt {
    background: rgba(255, 255, 255, 0.025);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(192, 119, 158, 0.12);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.section-title span {
    color: var(--rose);
}

.section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(192, 119, 158, 0.3);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ── About Layout ── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* ── Contact ── */
.contact-section {
    padding: 100px 24px;
    background: var(--deep);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-item span,
.contact-item a {
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--rose);
}

/* ── Footer ── */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 24px;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-brand:hover {
    color: var(--rose);
}

.footer-name {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Map Widget ── */
.map-wrapper {
    margin-top: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-consent {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-consent .map-icon {
    font-size: 40px;
}

.map-consent p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 460px;
    line-height: 1.7;
}

.map-consent p a {
    color: var(--rose);
    text-decoration: underline;
}

.map-consent-btn {
    background: var(--rose);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.map-consent-btn:hover {
    background: var(--rose-d);
    transform: translateY(-2px);
}

.map-frame {
    display: none;
    width: 100%;
    height: 380px;
    border: none;
}

.map-frame.loaded {
    display: block;
}

/* ── Footer Legal ── */
.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 900px) {
    .navbar {
        padding: 18px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .contact-info {
        grid-template-columns: 1fr;
    }

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