
/*
Theme Name: Garderie Lumi - Complete
Description: Complete WordPress theme for Garderie Lumi based on test-v1.44.html - Là où chaque enfant brille
Author: Garderie Lumi Team
Version: 1.45-UPDATED
Text Domain: garderielumi
*/



/* ==========================================================================
   COMPLETE GARDERIE LUMI WORDPRESS THEME - BASED ON test-v1.44.html
   ========================================================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Logo-Inspired Color Palette - Bright & Child-Friendly */
:root {
    /* Primary colors from logo elements */
    --sun-yellow: #FFD700;
    --sun-orange: #FF8C00;
    --letter-blue: #4A90E2;
    --letter-red: #E74C3C;
    --letter-green: #2ECC71;
    --letter-orange: #F39C12;
    
    /* Background gradients inspired by logo */
    --bg-primary: #FFF8E1;
    --bg-secondary: #FFE0B2;
    --bg-accent: #E8F5E8;
    
    /* Header colors */
    --header-primary: #FFD700;
    --header-secondary: #FF8C00;
    --header-accent: #4A90E2;
    
    /* Text colors */
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --color-primary: #2C3E50;
    --color-primary-light: #E8F5E8;
    --color-primary-dark: #1A252F;
    --color-white: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --accent-color: #F39C12;
    
    /* Shadows and effects */
    --shadow-color: rgba(74, 144, 226, 0.15);
    --shadow-warm: rgba(255, 140, 0, 0.2);
}

/* Google Fonts Import - Fredoka */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Fredoka', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary), var(--bg-accent));
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   STICKY NAVIGATION MENU
   ========================================================================== */

.header {
    background: linear-gradient(to right, #FFF8E1 0%, #FFF8E1 50%, rgba(255, 215, 0, 0.75) 100%);
    box-shadow: 0 2px 15px var(--shadow-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}

/* Simple slide timer progress bar */
.slider-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.slider-progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    width: 0%;
    transition: none;
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin-left: 2rem;
}

.nav a {
    font-family: 'Fredoka', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow: 
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black,
        0 -1px 0 black,
        0 1px 0 black,
        -1px 0 0 black,
        1px 0 0 black;
}

.nav a:hover {
    background: var(--letter-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

/* Language Toggle Button */
.language-toggle {
    flex-shrink: 0;
}

.lang-toggle-btn {
    background: var(--letter-green);
    color: var(--white);
    border: 2px solid var(--letter-blue);
    border-radius: 20px;
    padding: 4px 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.lang-toggle-btn:hover {
    background: var(--letter-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

/* Language Switching */
.lang-fr .lang-en,
.lang-en .lang-fr {
    display: none !important;
}

.lang-fr .lang-fr,
.lang-en .lang-en {
    display: inline-block !important;
}

/* ==========================================================================
   FULL-SCREEN SLIDER
   ========================================================================== */

.hero-slider {
    position: relative;
    height: 75vh;
    margin-top: 90px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.33%;
    height: 100%;
    background: linear-gradient(
        to left, 
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4),
        transparent
    );
    backdrop-filter: blur(2px);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 40%;
    text-align: right;
    color: var(--white);
    padding: 2rem;
    box-sizing: border-box;
}

.slide-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 
        3px 3px 8px rgba(0,0,0,0.8),
        1px 1px 4px rgba(0,0,0,0.7),
        0px 0px 2px rgba(0,0,0,0.9);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    word-wrap: break-word;
}

.slide-content p {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 1.5rem;
    text-shadow: 
        2px 2px 6px rgba(0,0,0,0.8),
        1px 1px 3px rgba(0,0,0,0.7),
        0px 0px 1px rgba(0,0,0,0.9);
    line-height: 1.5;
    font-weight: 400;
    word-wrap: break-word;
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    bottom: 6rem;
    background: rgba(74, 144, 226, 0.4);
    color: var(--white);
    border: 2px solid var(--sun-yellow);
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--letter-orange);
    border-color: var(--letter-red);
    transform: scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider Navigation Text */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 3;
}

.dot {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--letter-blue);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--letter-blue);
    text-shadow: none;
    white-space: nowrap;
}

.dot.active,
.dot:hover {
    background: var(--letter-orange);
    color: var(--white);
    border-color: var(--letter-red);
    transform: scale(1.05);
}

/* ==========================================================================
   GARDERIE LUMI SECTION
   ========================================================================== */

.garderie-section {
    padding: 2rem 0 4rem 0;
    background: linear-gradient(rgba(255, 248, 225, 0.2), rgba(232, 245, 232, 0.2)), url('IMAGES/LOGO/Yellow mirror.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D3D3D3;
    margin-bottom: 0.2rem;
    text-shadow: 
        -1.5px -1.5px 0 black,
        1.5px -1.5px 0 black,
        -1.5px 1.5px 0 black,
        1.5px 1.5px 0 black,
        0 -1.5px 0 black,
        0 1.5px 0 black,
        -1.5px 0 0 black,
        1.5px 0 0 black;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.inline-logo {
    height: 5rem;
    width: auto;
    margin-top: 0.2rem;
}

.brand-promise {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fade Card Styles */
.flip-card {
    background: transparent;
    height: 300px;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease-in-out;
}

.card-front {
    align-items: flex-start;
    background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15));
    opacity: 1;
    z-index: 2;
}

.card-back {
    align-items: center;
    border-color: var(--letter-orange);
    background-image: linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65));
    position: absolute;
    opacity: 0;
    z-index: 1;
}

.flip-card:hover .card-front {
    opacity: 0;
}

.flip-card:hover .card-back {
    opacity: 1;
}

.card-front h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: left;
    padding-left: 1.5rem;
    text-shadow: 
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black,
        0 -2px 0 black,
        0 2px 0 black,
        -2px 0 0 black,
        2px 0 0 black;
}

.card-back h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.card-back p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.card-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    height: 2rem;
    width: auto;
    opacity: 0.8;
}

/* ==========================================================================
   NOTRE HISTOIRE SECTION
   ========================================================================== */

.notre-histoire-section {
{
    padding: 4rem 0;
    background: red;
    min-height: 60vh;
}
}

.histoire-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 40vh;
}

.histoire-text {
    background: none;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    max-width: 50%;
    margin-right: 2rem;
}

.histoire-text p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: right;
    font-weight: 500;
}

.histoire-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   LOCATION AND CONTACT SECTION
   ========================================================================== */

.location-contact-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(255, 248, 225, 0.9), rgba(232, 245, 232, 0.9)), url('IMAGES/unipix stock/pexels-pavel-danilyuk-8422248.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 80vh;
}

.location-contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-section h3,
.contact-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

/* Google Maps Embed */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--letter-orange);
    margin-bottom: 2rem;
}

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--letter-orange);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--letter-orange);
}

.form-group input[type="date"] {
    color: var(--text-primary);
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: var(--letter-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.important-note {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.important-note strong {
    color: #e67e22;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(255, 248, 225, 0.9), rgba(232, 245, 232, 0.9)), url('IMAGES/AdobeStock_445939922.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.blog-coming-soon {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--letter-orange);
    max-width: 600px;
    margin: 0 auto;
}

.blog-coming-soon h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.blog-coming-soon p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.footer {
    background: linear-gradient(to right, var(--bg-primary), var(--bg-secondary));
    padding: 3rem 0 2rem 0;
    border-top: 3px solid var(--letter-orange);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.footer-section p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-medium);
    margin: 0;
    font-style: italic;
}

.footer-logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--text-light);
}

.footer-bottom p {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Responsive menu adjustments */
@media (max-width: 1024px) {
    .nav {
        gap: 1.5rem;
        margin-left: 1rem;
    }
    
    .nav a {
        font-size: 1.1rem;
        padding: 0.7rem 0.8rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.4rem 15px;
    }
    
    .nav {
        gap: 1rem;
        margin-left: 0.5rem;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.6rem 0.6rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .brand-promise {
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-section h2 {
        font-size: 2rem;
    }
    
    .blog-coming-soon {
        padding: 2rem;
    }
    
    .slide::before {
        width: 100%;
        background: linear-gradient(
            to bottom, 
            transparent,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.7)
        );
        backdrop-filter: blur(2px);
    }
    
    .slide-content {
        position: static;
        transform: none;
        width: 90%;
        margin: auto;
        margin-bottom: 4rem;
        text-align: center;
        padding: 2rem;
    }
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        padding: 0.5rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .notre-histoire-section .section-header {
        text-align: center;
        padding-right: 0;
    }
    
    .notre-histoire-section .section-header h2 {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .histoire-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        align-items: center;
    }
    
    .histoire-text {
        max-width: 100%;
        margin: 0 1rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .histoire-text p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .nav a {
        font-size: 0.9rem;
        padding: 0.5rem 0.4rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
}

/* ==========================================================================
   COMPLETE THEME STYLES - VERSION 1.44
   ========================================================================== */
