/* Custom CSS for Melissa Fulmore-Hardwick Website - Laurie Sudbrink Style */

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #DAA520;
    --warm-neutral: #F8F6F0;
    --light-brown: #E8D5C4;
    --dark-brown: #654321;
    --gold: #B8860B;
    --text-dark: #2C2C2C;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--text-dark);
}

/* Button Styles - Laurie Style */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.btn-light {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--warm-neutral);
    border-color: var(--warm-neutral);
    color: var(--dark-brown);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Color Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--warm-neutral) !important;
}

/* Navigation - Laurie Style */
.navbar {
    padding: 1rem 0;
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #E5E5E5;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    text-decoration: none;
}

.brand-text {
    color: var(--primary-color);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-medium) !important;
    margin: 0 8px;
    padding: 8px 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section - Laurie Style */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--warm-neutral) 0%, var(--light-brown) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(101, 67, 33, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0 8px 16px 8px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* About Section */
.about-image-placeholder {
    background: var(--warm-neutral);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
}

/* Book Section */
.book-cover-placeholder {
    background: var(--warm-neutral);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.book-formats .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
}

/* Newsletter Section */
.newsletter-form .form-control {
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    padding: 12px 16px;
}

.newsletter-form .form-control:focus {
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
    background: white;
}

/* Testimonial Section */
.testimonial-featured {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image img {
    object-fit: cover;
    border: 4px solid var(--warm-neutral);
}

.blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-medium);
}

.blockquote-footer {
    font-size: 1rem;
    color: var(--text-light);
}

/* Media Logos */
.media-logo-placeholder {
    text-align: center;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logo-placeholder:hover {
    opacity: 1;
}

/* Footer */
.footer {
    border-top: 1px solid #E5E5E5;
    background-color: var(--white) !important;
}

.footer .social-links a {
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.footer .contact-info a {
    color: var(--text-medium);
    font-weight: 500;
}

.footer .contact-info a:hover {
    color: var(--primary-color);
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 6px;
    border: 2px solid #E5E5E5;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Chatbot Placeholder */
.chatbot-placeholder {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
}

.chatbot-placeholder::before {
    content: '💬';
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
    
    .about-image-placeholder,
    .book-cover-placeholder {
        height: 250px;
        padding: 2rem;
    }
    
    .chatbot-placeholder {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-placeholder::before {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .blockquote {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Page Hero - For other pages */
.page-hero {
    background: var(--warm-neutral);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: var(--text-medium);
}

/* Additional Styles for Other Pages */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #166534;
    border-left: 4px solid #22c55e;
}
