/* ============================================
   GLOW BY EMALEE & JEWEL — STYLES
   Baby pink, simple, cute
   ============================================ */

:root {
    --pink-50: #fff5f8;
    --pink-100: #ffe4ee;
    --pink-200: #ffc8dc;
    --pink-300: #ff9dbf;
    --pink-400: #f97fb0;
    --pink-500: #f06292;
    --pink-600: #e91e8c;
    --rose-gold: #f48fb1;
    --cream: #fff9fb;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 247, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pink-100);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.hero-logo {
    max-width: 450px;
    width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink-500);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--pink-600);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--pink-500);
    border: 2px solid var(--pink-200);
}

.btn-secondary:hover {
    background: var(--pink-50);
    border-color: var(--pink-300);
}

.btn-outline {
    background: transparent;
    color: var(--pink-500);
    border: 2px solid var(--pink-300);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background: var(--pink-50);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

/* ---- Sections ---- */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ---- About / Artists ---- */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--pink-100);
    transition: transform 0.3s;
}

.artist-card:hover {
    transform: translateY(-4px);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-200), var(--pink-300));
    color: var(--pink-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.artist-avatar.small {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.artist-card h3 {
    font-size: 1.4rem;
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.artist-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ---- Services ---- */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--pink-50);
    border-radius: var(--radius);
    padding: 0 0 2rem;
    text-align: center;
    border: 1px solid var(--pink-100);
    transition: transform 0.3s;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.25rem;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--pink-400);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- Booking ---- */
.booking {
    background: linear-gradient(180deg, var(--cream) 0%, var(--pink-50) 100%);
}

.booking-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--pink-100);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.progress-step span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--pink-100);
    color: var(--pink-400);
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
    color: white;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
}

.progress-step.completed .step-number {
    background: var(--pink-300);
    color: white;
}

.progress-line {
    width: 50px;
    height: 2px;
    background: var(--pink-100);
    margin: 0 0.3rem;
    margin-bottom: 1.2rem;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    text-align: center;
    color: var(--pink-600);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* Artist Selection */
.artist-select, .service-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.artist-option input,
.service-option input {
    display: none;
}

.artist-option-card,
.service-option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--pink-100);
    cursor: pointer;
    transition: all 0.3s;
}

.service-option-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
}

.artist-option input:checked ~ .artist-option-card,
.service-option input:checked ~ .service-option-card {
    border-color: var(--pink-400);
    background: var(--pink-50);
    box-shadow: 0 0 0 1px var(--pink-400);
}

.artist-option-card strong,
.service-option-card strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.artist-option-card p,
.service-option-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.service-icon-small {
    font-size: 1.8rem;
    color: var(--pink-400);
}

/* Form Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--pink-100);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--pink-400);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--pink-100);
    margin: 1.5rem 0;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.3rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.radio-option input[type="radio"] {
    accent-color: var(--pink-500);
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
}

.checkbox-option input[type="checkbox"] {
    accent-color: var(--pink-500);
    width: 16px;
    height: 16px;
}

.hint-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Time Slots */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    min-height: 44px;
}

.time-slot {
    padding: 0.55rem 1.1rem;
    border: 2px solid var(--pink-100);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
    background: var(--white);
}

.time-slot:hover {
    border-color: var(--pink-300);
    background: var(--pink-50);
}

.time-slot.selected {
    border-color: var(--pink-500);
    background: var(--pink-500);
    color: white;
}

.request-time-section {
    text-align: center;
    padding-top: 0.5rem;
}

/* Location Info */
.location-info {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--pink-50);
    border-radius: var(--radius-sm);
}

.location-info h4 {
    font-size: 0.95rem;
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.location-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Booking Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.booking-confirmation h3 {
    font-size: 1.6rem;
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.booking-confirmation > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.confirmation-details {
    background: var(--pink-50);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
}

.confirmation-details p {
    margin-bottom: 0.3rem;
}

.care-info {
    text-align: left;
    background: var(--pink-50);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.care-info h4 {
    font-size: 1rem;
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.care-info ul {
    list-style: none;
    padding: 0;
}

.care-info li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.care-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink-300);
}

/* ---- Reviews ---- */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--pink-50);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--pink-100);
}

.review-stars {
    color: var(--pink-400);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-500);
}

/* Leave Review */
.leave-review {
    max-width: 500px;
    margin: 0 auto;
    background: var(--pink-50);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid var(--pink-100);
}

.leave-review h3 {
    text-align: center;
    color: var(--pink-600);
    margin-bottom: 1.5rem;
}

.star-rating {
    display: flex;
    gap: 0.3rem;
}

.star-rating .star {
    font-size: 1.8rem;
    color: var(--pink-200);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating .star.active {
    color: var(--pink-400);
}

/* ---- Footer ---- */
.footer {
    background: linear-gradient(135deg, var(--pink-100) 0%, var(--pink-200) 100%);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--pink-600);
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--pink-600);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--pink-500) !important;
    opacity: 1 !important;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(219, 39, 119, 0.15);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001; 
    }

    /* Animate Hamburger into an "X" */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: 0;
        gap: 0;
        overflow: hidden;
        max-height: 0; 
        transition: max-height 0.4s ease-in-out;
    }

    .nav-links.active {
        max-height: 400px; 
        border-bottom: 3px solid var(--pink-400);
    }

    .nav-links li {
        padding: 0;
        text-align: center; 
        border-bottom: 1px solid var(--pink-50);
    }

    .nav-links a {
        display: block;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .artist-select, .service-select {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 2rem 1.2rem;
    }

    .progress-line {
        width: 30px;
    }

    .progress-step span {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3.5rem 0;
    }

    .btn-group {
        flex-direction: column;
    }

    .progress-bar {
        gap: 0;
    }

    .progress-line {
        width: 20px;
    }
}