/* ===== DESTINY NAIL SPA - STYLES.CSS ===== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #d4a59a;
    --secondary: #f5e6e8;
    --gold: #c9a96e;
    --dark: #2c2c2c;
    --light: #ffffff;
    --shadow: rgba(0,0,0,0.1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
}

/* ===== NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn-book {
    background: var(--gold);
    color: var(--light);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-book:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.hero-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

/* ===== RATING ===== */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 1rem 0 2rem;
}

.rating-center {
    text-align: center;
    margin: 2rem 0;
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
}

.rating-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: var(--dark);
}

/* ===== SECTIONS ===== */
section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-family: 'Arial', sans-serif;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.service-card p {
    font-family: 'Arial', sans-serif;
    color: #666;
    line-height: 1.8;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-family: 'Arial', sans-serif;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
}

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

.price-note {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #999;
    font-style: italic;
    margin-top: 2rem;
}

.special-note {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    color: #555;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    text-align: center;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* ===== INSTAGRAM LINKS ===== */
.instagram-link {
    text-align: center;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.instagram-link p {
    font-size: 1.2rem;
    color: #555;
}

.instagram-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.instagram-link a:hover {
    color: var(--gold);
}

.instagram-link .dot {
    margin: 0 0.5rem;
}

.instagram-cta {
    margin-top: 3rem;
}

/* ===== REVIEWS ===== */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.review-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.review-card .stars {
    display: block;
    margin-bottom: 1rem;
}

.review-text {
    font-family: 'Arial', sans-serif;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.reviewer {
    font-weight: bold;
    color: var(--dark);
    font-family: 'Arial', sans-serif;
}

/* ===== ABOUT ===== */
.about-content {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.about-content p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 2;
}

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    font-family: 'Arial', sans-serif;
    color: #666;
    line-height: 1.8;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.info-item a:hover {
    color: var(--gold);
}

.promo-box {
    margin-top: 2rem;
}

.promo-box p {
    margin-bottom: 1rem;
}

.promo-box .btn-book {
    color: #fff;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 20px;
}

.cta-section h2 {
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

.cta-section .btn-book {
    background: var(--light);
    color: var(--primary);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-section .btn-book:hover {
    background: var(--dark);
    color: var(--light);
}

/* ===== PROMO SIGNUP ===== */
.promo-signup {
    background: var(--secondary);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
}

.promo-signup h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.promo-signup p {
    font-family: 'Arial', sans-serif;
    color: #666;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-address {
    color: #999;
}

.footer-phone {
    margin-top: 0.5rem;
}

.footer-phone a {
    color: var(--gold);
    text-decoration: none;
}

.footer-rating {
    color: #666;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--light);
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--gold);
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
        gap: 1rem;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container {
        padding: 0 1rem;
    }

    section {
        padding: 0 1rem;
    }

    .booking-steps {
        gap: 0.3rem;
    }

    .step-label {
        display: none;
    }

    .step-line {
        min-width: 20px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .booking-nav .btn-book {
        width: 100%;
        text-align: center;
    }
}

/* ===== BOOKING PAGE ===== */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 3rem;
    max-width: 600px;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.step.active, .step.completed {
    opacity: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.step.active .step-num {
    background: var(--gold);
    color: white;
}

.step.completed .step-num {
    background: var(--primary);
    color: white;
}

.step-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
}

.step-line {
    flex: 1;
    min-width: 30px;
    height: 2px;
    background: #ddd;
}

.booking-step-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease;
}

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

.step-title {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: var(--dark);
    margin: 1.5rem 0 0.5rem;
    font-size: 0.95rem;
}

.booking-select, .booking-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: white;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.booking-select:focus, .booking-input:focus {
    outline: none;
    border-color: var(--primary);
}

.booking-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Service option cards */
.service-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.service-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Arial', sans-serif;
    background: white;
}

.service-option:hover {
    border-color: var(--primary);
    background: #fdf5f4;
}

.service-option.selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fdf5f4 0%, #fff9f0 100%);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.2);
}

.service-option-name {
    font-weight: 500;
    color: var(--dark);
}

.service-option-price {
    font-weight: bold;
    color: var(--gold);
}

/* Time slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.7rem 0.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: white;
    color: var(--dark);
}

.time-slot:hover {
    border-color: var(--primary);
    background: #fdf5f4;
}

.time-slot.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: white;
    font-weight: bold;
}

/* Booking navigation buttons */
.booking-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    gap: 1rem;
}

.booking-nav-center {
    justify-content: center;
}

.booking-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-back {
    background: #e0e0e0;
    color: var(--dark);
}

.btn-back:hover {
    background: #ccc;
    color: var(--dark);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
}

/* Booking summary */
.booking-summary {
    background: var(--secondary);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-family: 'Arial', sans-serif;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--dark);
}

.summary-row span:last-child {
    color: #555;
    text-align: right;
    max-width: 60%;
}

.booking-disclaimer {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #999;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Booking validation error */
.booking-error {
    color: #e74c3c;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.booking-error.show {
    display: block;
}

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

.confirmation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.confirmation-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.confirmation-details {
    background: var(--secondary);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.confirmation-details p {
    font-family: 'Arial', sans-serif;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.confirmation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.confirm-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Arial', sans-serif;
    color: #555;
}

.confirm-step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.confirmation-summary-mini {
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
    color: var(--dark);
    font-weight: 600;
}