/* Veloce & Velvet Premium Theme Stylesheet */

/* Design Tokens & Variables */
:root {
    --bg-main: #0c0b0f;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-nav: rgba(12, 11, 15, 0.85);
    --text-main: #e5e5e7;
    --text-muted: #9fa0a7;
    --gold: #d4af37; /* Metallic Gold */
    --gold-light: #f3e5ab;
    --gold-dim: rgba(212, 175, 55, 0.12);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.25);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: #fff;
    line-height: 1.2;
}

.text-serif {
    font-family: var(--font-heading);
    font-style: italic;
}

.text-gold {
    color: var(--gold);
}

/* Layout Utilities */
.section-padding {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-subtitle {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #b38728 0%, var(--gold) 50%, #fbf5b7 100%);
    color: #0c0b0f;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-full {
    width: 100%;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 5%;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 14px 5%;
    background-color: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo-accent {
    color: var(--gold);
}

.logo-divider {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.2rem;
}

.logo-light {
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 80px;
    background: radial-gradient(circle at 80% 20%, #1c1510 0%, var(--bg-main) 60%);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    top: 10%;
    right: 5%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #1c1a24 0%, #0d0c12 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Graphic elements simulating salon inside placeholder visual */
.about-visual::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12rem;
    color: rgba(255,255,255,0.015);
    position: absolute;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(12, 11, 15, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.about-badge h4 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.about-badge p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0;
}

/* Zones Section */
.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.zone-card {
    height: 400px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform var(--transition);
}

.zone-card:hover {
    transform: translateY(-5px);
}

.barber-zone {
    background: linear-gradient(to top, rgba(12, 11, 15, 0.95) 30%, rgba(28, 21, 16, 0.6) 100%);
}

.beauty-zone {
    background: linear-gradient(to top, rgba(12, 11, 15, 0.95) 30%, rgba(20, 16, 28, 0.6) 100%);
}

.zone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.zone-content {
    position: relative;
    z-index: 2;
}

.zone-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.zone-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.zone-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 450px;
}

.zone-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.zone-link:hover {
    gap: 12px;
    color: #fff;
}

/* Before/After Comparison Gallery Slider */
.slider-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    user-select: none;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* CSS Drawing representing transformation before vs after */
.img-before {
    background: linear-gradient(135deg, #222226 0%, #151518 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Draw a sad, messy styled icon vector in "before" */
.img-before::after {
    content: '\f0ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.03);
}

.img-after {
    background: linear-gradient(135deg, #1c1510 0%, #44321a 50%, #1a141b 100%);
    width: 50%; /* JS will change this */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Draw a golden crown sparkling in "after" */
.img-after::after {
    content: '\f521';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9rem;
    color: rgba(212, 175, 55, 0.06);
}

.image-label {
    position: absolute;
    bottom: 24px;
    padding: 8px 18px;
    background: rgba(12, 11, 15, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-before {
    left: 24px;
    color: var(--text-muted);
}

.label-after {
    right: 24px;
    color: var(--gold);
    border-color: var(--border-gold);
}

/* The vertical drag line bar */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* JS will change this */
    width: 2px;
    height: 100%;
    background-color: var(--gold);
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 10;
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background-color: #0c0b0f;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.handle-button i {
    font-size: 0.8rem;
}

/* Pricing Section */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.pricing-column h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.pricing-column h3 i {
    color: var(--gold);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-name {
    color: #fff;
}

.price-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 15px;
}

.price-value {
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.booking-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.booking-info-panel p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.salon-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.detail-item i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.detail-item h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: var(--text-muted);
}

.detail-item p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
}

/* Wizard Styling */
.wizard-card {
    position: relative;
    overflow: hidden;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

/* Indicator step circle */
.step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.step-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #0c0b0f;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.step-text {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--text-muted);
    font-weight: 500;
}

.step-indicator.active .step-text {
    color: #fff;
    font-weight: 600;
}

/* Line behind indicators */
.wizard-steps::before {
    content: '';
    position: absolute;
    height: 1px;
    background: var(--border-color);
    top: 18px;
    left: 10px;
    right: 10px;
    z-index: 1;
}

.wizard-step-content {
    display: none;
    min-height: 250px;
}

.wizard-step-content.active {
    display: block;
}

.wizard-step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Service selection cards */
.service-selection-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-radio input {
    display: none;
}

.service-box {
    display: block;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.service-radio input:checked + .service-box {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.service-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.service-title {
    color: #fff;
}

.service-price {
    color: var(--gold);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stylist cards */
.stylist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stylist-card input {
    display: none;
}

.stylist-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.stylist-card input:checked + .stylist-box {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.stylist-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    transition: all var(--transition);
}

.stylist-card input:checked + .stylist-box .stylist-avatar {
    background: var(--gold);
    color: #0c0b0f;
    border-color: var(--gold);
}

.stylist-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.stylist-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Date picker picker styles */
.datetime-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

#booking-date {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    font-family: var(--font-body);
}

#booking-date::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.time-slot input:checked + span {
    background: var(--gold);
    color: #0c0b0f;
    border-color: var(--gold);
}

/* Contact form and summary */
.contact-form-groups {
    margin-bottom: 24px;
}

.booking-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.booking-summary-box h4 {
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.summary-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-details li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.summary-details span {
    color: #fff;
}

/* Wizard actions buttons */
.wizard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* Success Screen */
.wizard-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.wizard-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.wizard-success p {
    color: var(--text-muted);
    max-width: 450px;
    margin: 0 auto 30px;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    background: #060507;
    padding: 40px 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-credit {
    color: var(--gold);
    font-weight: 600;
}

.footer-credit:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container, .zones-grid, .pricing-container, .booking-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .datetime-container {
        grid-template-columns: 1fr;
    }
    
    .stylist-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-steps {
        margin-bottom: 50px;
    }
    
    .step-text {
        font-size: 0.65rem;
    }
}
