/* ===== DORINA COIFFURE — Static Website ===== */
/* Rose-Gold / Burgundy / Cream Palette */

:root {
    --rose-gold: #B76E79;
    --rose-gold-light: #D4A0A7;
    --rose-gold-dark: #8C4A55;
    --burgundy: #722F37;
    --burgundy-dark: #4A1C23;
    --cream: #FFF8F0;
    --cream-dark: #F5E6D3;
    --pearl: #FAF0E6;
    --charcoal-deep: #1A1A2E;
    --charcoal-mid: #2D2D44;
    --charcoal-light: #3D3D5C;
    --soft-white: #FCFCFC;
    --warm-gray: #8E8E9A;
    --success-green: #4CAF7D;
    --accent-amber: #E8A838;
    --surface-elevated: #252540;
    --shadow: rgba(26, 26, 46, 0.15);
    --shadow-lg: rgba(26, 26, 46, 0.25);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--cream);
    color: var(--charcoal-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { color: var(--rose-gold-dark); }

h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.3;
}

img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--burgundy-dark);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px var(--shadow-lg);
    transition: background 0.3s;
}
.navbar.scrolled { background: rgba(74, 28, 35, 0.97); }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rose-gold);
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.navbar-brand span.icon { font-size: 1.5rem; }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    color: var(--cream-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--rose-gold);
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 26px; height: 2px;
    background: var(--rose-gold);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--rose-gold-dark) 100%);
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.hero-icon { font-size: 4rem; margin-bottom: 16px; }
.hero h1 {
    font-size: 3.2rem;
    color: var(--rose-gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.hero .subtitle {
    font-size: 1.25rem;
    color: rgba(212, 160, 167, 0.8);
    margin-bottom: 24px;
    font-weight: 300;
}
.hero .location {
    font-size: 0.95rem;
    color: rgba(212, 160, 167, 0.6);
    margin-bottom: 32px;
}
.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
}
.status-badge.open {
    background: rgba(76, 175, 125, 0.2);
    color: var(--success-green);
}
.status-badge.closed {
    background: rgba(207, 102, 121, 0.2);
    color: #CF6679;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-gold);
    color: var(--soft-white);
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(183, 110, 121, 0.5);
    color: var(--soft-white);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.section-title {
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 12px;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--warm-gray);
    margin-bottom: 48px;
    font-size: 1rem;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.action-card {
    background: var(--soft-white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: var(--charcoal-deep);
}
.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-lg);
    color: var(--charcoal-deep);
}
.action-card .card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.action-card h3 {
    font-size: 1.1rem;
    color: var(--rose-gold-dark);
    font-family: 'Segoe UI', sans-serif;
}

/* ===== TODAY'S HOURS ===== */
.today-hours {
    background: var(--pearl);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px var(--shadow);
}
.today-hours h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-gold-dark);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.today-hours .hours-text {
    font-size: 1.05rem;
    color: var(--charcoal-deep);
}
.today-hours .hours-text.closed { color: #B00020; }

/* ===== SERVICES ===== */
.services-grid {
    margin-bottom: 32px;
}
.category-title {
    font-size: 1.3rem;
    color: var(--rose-gold);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream-dark);
}
.service-card {
    display: flex;
    align-items: center;
    background: var(--soft-white);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 1px 6px var(--shadow);
    transition: transform 0.2s;
}
.service-card:hover { transform: translateX(4px); }
.service-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-right: 16px;
}
.service-info { flex: 1; }
.service-info h4 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--charcoal-deep);
    margin-bottom: 2px;
}
.service-info p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 2px;
}
.service-info .duration {
    font-size: 0.8rem;
    color: var(--warm-gray);
}
.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rose-gold);
    white-space: nowrap;
    margin-left: 12px;
}

/* ===== BOOKING ===== */
.booking-section {
    background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--rose-gold-dark) 100%);
    padding: 80px 24px;
}
.booking-container {
    max-width: 700px;
    margin: 0 auto;
}
.booking-section .section-title { color: var(--rose-gold); }
.booking-section .section-subtitle { color: rgba(212, 160, 167, 0.7); }

/* Stepper */
.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
}
.step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--charcoal-light);
    color: var(--warm-gray);
    transition: 0.3s;
}
.step-circle.active {
    background: var(--rose-gold);
    color: var(--soft-white);
}
.step-circle.done {
    background: var(--success-green);
    color: var(--soft-white);
}
.step-line {
    width: 40px; height: 2px;
    background: var(--charcoal-light);
    transition: 0.3s;
}
.step-line.active { background: var(--rose-gold); }

/* Booking Cards */
.booking-card {
    background: var(--charcoal-mid);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.booking-card h3 {
    color: var(--rose-gold);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.booking-card p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Date buttons */
.date-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.date-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-elevated);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--soft-white);
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.95rem;
}
.date-btn:hover { border-color: var(--rose-gold); }
.date-btn.selected {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.15);
}
.date-btn .date-hours {
    font-size: 0.8rem;
    color: var(--warm-gray);
}
.date-btn .check { color: var(--rose-gold); font-size: 1.2rem; display: none; }
.date-btn.selected .check { display: inline; }

/* Time grid */
.time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.time-btn {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(142, 142, 154, 0.3);
    background: var(--surface-elevated);
    color: var(--soft-white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}
.time-btn:hover { border-color: var(--rose-gold); }
.time-btn.selected {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--soft-white);
    font-weight: 700;
}
.time-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Service checkboxes */
.service-check {
    display: flex;
    align-items: center;
    background: var(--surface-elevated);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.service-check:hover { border-color: var(--rose-gold-dark); }
.service-check.selected {
    border-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.12);
}
.service-check input[type="checkbox"] {
    accent-color: var(--rose-gold);
    width: 18px; height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}
.service-check .sc-info { flex: 1; }
.service-check .sc-info span {
    display: block;
    color: var(--soft-white);
    font-size: 0.95rem;
}
.service-check .sc-info small {
    color: var(--warm-gray);
    font-size: 0.8rem;
}
.service-check .sc-price {
    color: var(--rose-gold);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 8px;
}

/* Customer info inputs */
.input-group {
    margin-bottom: 14px;
}
.input-group label {
    display: block;
    color: var(--rose-gold-light);
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.input-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--charcoal-light);
    background: var(--surface-elevated);
    color: var(--soft-white);
    font-size: 0.95rem;
    transition: border 0.3s;
}
.input-group input:focus {
    outline: none;
    border-color: var(--rose-gold);
}

/* Summary */
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--soft-white);
    font-size: 0.95rem;
}
.summary-row .label { color: var(--warm-gray); }
.summary-services {
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(142,142,154,0.2);
    border-bottom: 1px solid rgba(142,142,154,0.2);
}
.summary-services li {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    color: var(--soft-white);
    font-size: 0.9rem;
    list-style: none;
}
.summary-services li .s-price { color: var(--rose-gold); font-weight: 600; }
.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 8px;
}
.summary-total .total-price { color: var(--rose-gold); }
.summary-duration {
    text-align: right;
    color: var(--warm-gray);
    font-size: 0.85rem;
    margin-top: 2px;
}
.summary-note {
    background: var(--surface-elevated);
    border-radius: 10px;
    padding: 12px;
    margin-top: 16px;
    color: var(--warm-gray);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Booking Buttons */
.booking-btns {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}
.btn {
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary {
    background: var(--rose-gold);
    color: var(--soft-white);
    box-shadow: 0 4px 16px rgba(183,110,121,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183,110,121,0.45);
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.btn-outline {
    background: transparent;
    color: var(--rose-gold);
    border: 2px solid var(--rose-gold);
}
.btn-outline:hover {
    background: rgba(183,110,121,0.1);
}
.btn-whatsapp {
    background: var(--rose-gold);
    color: var(--soft-white);
    font-size: 1rem;
    padding: 14px 32px;
    box-shadow: 0 4px 16px rgba(183,110,121,0.35);
}

.step-panel { display: none; }
.step-panel.active { display: block; }

/* ===== ABOUT SECTION ===== */
.about-card {
    background: var(--soft-white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px var(--shadow);
}
.about-card h3 {
    color: var(--rose-gold);
    margin-bottom: 12px;
}
.about-card p {
    color: var(--charcoal-mid);
    line-height: 1.8;
}

/* Opening hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table tr {
    border-bottom: 1px solid var(--cream-dark);
}
.hours-table td {
    padding: 10px 4px;
    font-size: 0.95rem;
}
.hours-table td:first-child {
    font-weight: 600;
    color: var(--charcoal-deep);
}
.hours-table td:last-child {
    text-align: right;
    color: var(--charcoal-mid);
}
.hours-table .closed-text {
    color: #B00020;
    font-style: italic;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
    background: var(--pearl);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px var(--shadow);
}
.highlights h3 {
    color: var(--rose-gold-dark);
    margin-bottom: 16px;
    font-family: 'Segoe UI', sans-serif;
}
.highlights ul {
    list-style: none;
}
.highlights li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--charcoal-deep);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.contact-card {
    display: flex;
    align-items: center;
    background: var(--soft-white);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: var(--charcoal-deep);
}
.contact-card:hover {
    transform: translateY(-2px);
    color: var(--charcoal-deep);
}
.contact-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-right: 14px;
}
.contact-info h4 { font-family: 'Segoe UI', sans-serif; font-size: 0.95rem; }
.contact-info p { font-size: 0.85rem; color: var(--warm-gray); margin-top: 2px; }

.location-note {
    background: var(--pearl);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px var(--shadow);
}
.location-note h4 {
    color: var(--charcoal-deep);
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 8px;
}
.location-note p { color: var(--warm-gray); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--burgundy-dark);
    color: var(--cream-dark);
    text-align: center;
    padding: 32px 24px;
}
.footer-brand {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: var(--rose-gold);
    margin-bottom: 8px;
}
.footer p { font-size: 0.85rem; color: rgba(212,160,167,0.6); margin: 4px 0; }
.footer a { color: var(--rose-gold-light); }
.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    color: rgba(212,160,167,0.6);
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--rose-gold); }

/* ===== PRIVACY PAGE ===== */
.privacy-page {
    padding: 100px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
}
.privacy-page h1 {
    color: var(--burgundy);
    margin-bottom: 24px;
    font-size: 2rem;
}
.privacy-section {
    margin-bottom: 24px;
}
.privacy-section h2 {
    color: var(--rose-gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.privacy-section p {
    color: var(--charcoal-mid);
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--burgundy-dark);
        flex-direction: column;
        padding: 16px 24px;
        gap: 16px;
        box-shadow: 0 8px 24px var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2.2rem; }
    .hero .subtitle { font-size: 1rem; }

    .section { padding: 48px 16px; }
    .section-title { font-size: 1.6rem; }

    .booking-section { padding: 48px 16px; }
    .booking-card { padding: 20px; }

    .booking-btns {
        flex-direction: column;
    }
    .btn { width: 100%; justify-content: center; }

    .stepper { gap: 4px; }
    .step-line { width: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .quick-actions { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
