/**
 * Lucia Hair Extensions Booking Styles
 */

:root {
    --primary-color: #2c1810;
    --accent-color: #C4A484;
    --cta-color: #8B6F47;
    --bg-color: #FAF8F5;
    --alt-bg-color: #FFFFFF;
    --text-color: #2c1810;
    --light-text-color: #6B5D52;
    --border-color: #E8DDD1;
    --success-color: #4A7C59;
    --error-color: #C44536;
}

/* Container */
#lucia-booking-container {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Management */
.lucia-page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

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

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

/* Hero Section */
.lucia-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--cta-color));
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lucia-hero h1 {
    font-size: 3.5em;
    margin: 0 0 20px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.lucia-tagline {
    font-size: 1.4em;
    font-style: italic;
    margin: 0;
    opacity: 0.95;
}

/* Header */
.lucia-header {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--alt-bg-color);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lucia-header h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin: 0 0 15px 0;
    font-weight: 300;
}

.lucia-header p {
    color: var(--light-text-color);
    font-size: 1.2em;
    margin: 0;
}

/* Content Sections */
.lucia-content {
    background-color: var(--alt-bg-color);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lucia-offer-section h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin: 0 0 25px 0;
    text-align: center;
    font-weight: 300;
}

.lucia-offer-section > p {
    text-align: center;
    font-size: 1.1em;
    color: var(--light-text-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Features List */
.lucia-features {
    margin: 40px 0;
}

.lucia-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lucia-features li {
    background-color: var(--bg-color);
    padding: 25px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.lucia-features li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(196, 164, 132, 0.2);
}

/* CTA Button */
.lucia-cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--cta-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lucia-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.4);
}

.lucia-cta-button:active {
    transform: translateY(-1px);
}

/* Testimonial Section */
.lucia-testimonial-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.lucia-testimonial-section h3 {
    color: var(--primary-color);
    font-size: 2em;
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: 300;
}

.lucia-testimonial {
    background: linear-gradient(135deg, var(--bg-color), #FFF8F0);
    padding: 40px 50px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    font-size: 1.15em;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Form Container */
.lucia-form-container {
    background-color: var(--alt-bg-color);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.lucia-form-container h3 {
    color: var(--primary-color);
    font-size: 2em;
    text-align: center;
    margin: 0 0 15px 0;
    font-weight: 300;
}

.lucia-note {
    text-align: center;
    color: var(--light-text-color);
    font-style: italic;
    margin-bottom: 40px;
}

/* Form Elements */
.lucia-form-group {
    margin-bottom: 25px;
}

.lucia-form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05em;
}

.lucia-form-group input,
.lucia-form-group textarea,
.lucia-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--bg-color);
}

.lucia-form-group input:focus,
.lucia-form-group textarea:focus,
.lucia-form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
}

.lucia-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Secure Note */
.lucia-secure-note {
    text-align: center;
    color: var(--light-text-color);
    font-size: 0.95em;
    margin-top: 20px;
}

/* Processing/Loading Page */
.lucia-loader {
    border: 8px solid var(--border-color);
    border-top: 8px solid var(--accent-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    margin: 60px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Summary Items */
.lucia-summary-item {
    font-size: 1.2em;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lucia-hero h1 {
        font-size: 2.5em;
    }
    
    .lucia-tagline {
        font-size: 1.1em;
    }
    
    .lucia-hero {
        padding: 50px 20px;
    }
    
    .lucia-content {
        padding: 40px 20px;
    }
    
    .lucia-form-container {
        padding: 30px 20px;
    }
    
    .lucia-offer-section h2,
    .lucia-header h2 {
        font-size: 2em;
    }
    
    .lucia-features li {
        padding: 20px;
        font-size: 1em;
    }
    
    .lucia-cta-button {
        font-size: 1.1em;
        padding: 18px 30px;
    }
    
    .lucia-testimonial {
        padding: 30px 25px;
        font-size: 1.05em;
    }
}

@media (max-width: 480px) {
    #lucia-booking-container {
        padding: 10px;
    }
    
    .lucia-hero h1 {
        font-size: 2em;
    }
    
    .lucia-hero {
        padding: 40px 15px;
    }
    
    .lucia-cta-button {
        font-size: 1em;
        padding: 15px 25px;
    }
}

/* Success/Error Messages */
.lucia-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.lucia-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lucia-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
