/* 
   LourdeBella Website Stylesheet - Updated Design
   Modern, bold aesthetic with glassmorphism and vibrant gradients
*/

/* Color Variables - Enhanced Palette */
:root {
    --navy: #0F172A;
    --gold: #F59E0B;
    --cream: #FFFBEB;
    --green: #059669;
    --dark-navy: #020617;
    --light-gold: #FCD34D;
    --light-cream: #FEF3C7;
    --accent-purple: #7C3AED;
    --accent-pink: #EC4899;
    --gradient-primary: linear-gradient(135deg, #f3c679 0%, #ffc078 50%, #ffa46b 100%);
    --gradient-button: linear-gradient(135deg, #ffc561 0%, #fda846 50%, #fd7825 100%);
    --gradient-secondary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

/* Specific Section Header Styles */

/* About Section Header */
.about-header h2 {
    color: var(--navy);
    font-size: 2.5rem;
}

/* Services Section Header */
.services-header h2 {
    color: var(--gold);
    font-size: 3rem;
}

/* What We Do Section Header */
.what-we-do-header h2 {
    color: var(--green);
    font-size: 2.8rem;
}

/* Testimonials Section Header */
.testimonials-header h2 {
    color: var(--accent-purple);
    font-size: 2.5rem;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(20px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
}

.logo img {
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--light-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 200px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-top: -60px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 30px;
    font-size: 3rem;
    color: white;
    -webkit-text-fill-color: white;
}

.hero h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 3    0px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--cream);
    background-position: center; /* Centers the image */
    position: relative;
    padding: 80px 0;
    color: var(--navy); /* Optional: Sets the text color to white for better contrast */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; /* Center align for better balance */
    position: relative;
    z-index: 2;
}

.about-text {
    animation: slideInLeft 1.2s ease-out;
    padding-right: 20px; /* Add some spacing from the image */
}

.about-text .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission, .founder {
    margin-bottom: 40px;
}

.mission-statement {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-image {
    animation: slideInRight 1.2s ease-out;
    display: flex;
    align-items: center;
}

.about-img {
    width: 220%; /* Set to 100% to fit the container */
    height: 250%; /* Maintain aspect ratio */
    display: flex; /* Ensure it behaves like a block element */
    margin: 0 auto; /* Center the video */
}

.about-img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .mission-statement {
        font-size: 1.8rem;
    }
    
    .about-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .mission-statement {
        font-size: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
}



/* Services Section */
.services {
    background: var(--navy);
    color: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.services .section-header h2 {
    color: white;
}

.service-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.service-box h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-gold);
    font-size: 2.5rem;
}

.service-content {
    text-align: center;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.service-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-list li {
    position: relative;
    padding-left: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
    font-size: 1.2rem;
}

.service-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.custom-note {
    font-style: italic;
    color: var(--light-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 40px 0;
}

.service-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    padding: 120px 0;
}

.testimonials section-header h2 {
    color: var(--navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-primary);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-emoji {
    font-size: 2rem;
    padding: 10px;
    background: var(--light-cream);
    border-radius: 50%;
}

.company-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}   

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--navy);
    font-style: italic;
}

.service-video {
    width: 100%; /* Set to 100% to fit the container */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the video */
}

.author-name {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.95rem;
}

.testimonial-card:hover .testimonial-text,
.testimonial-card:hover .company-name,
.quote-icon:hover,
.testimonial-card:hover .author-name {
    color: var(--cream);
}


/* Footer */
footer {
    background: var(--dark-navy);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Feedback */
.form-success {
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.form-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 22px;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        gap: 0;
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .service-box {
        padding: 40px 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .hero-logo {
        margin-top: 20px;
    }

    .about section {
        margin-top: 5;
    }

    .hero h1  {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero h3  {
        font-size: 1.2rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .service-box {
        padding: 30px 20px;
    }
}