/* ZenFlow - Minimal Zen Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #2c3e50;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
}

/* Zen Notice */
.zen-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.zen-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #2c3e50;
}

.notice-content button {
    background: none;
    border: 1px solid #2c3e50;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.notice-content button:hover {
    background: #2c3e50;
    color: white;
}

/* Navigation */
.zen-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.zen-logo {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.nav-dots {
    display: flex;
    gap: 20px;
}

.nav-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dots .dot:hover,
.nav-dots .dot.active {
    background: #2c3e50;
    transform: scale(1.2);
}

.nav-dots .dot::after {
    content: attr(data-section);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #2c3e50;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-dots .dot:hover::after {
    opacity: 1;
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    width: 100%;
}

/* Presence Section */
.presence-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zen-text h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.zen-text p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-style: italic;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-description p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

.zen-circle {
    width: 200px;
    height: 200px;
    border: 2px solid #2c3e50;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: zenPulse 4s ease-in-out infinite;
}

.circle-inner {
    width: 150px;
    height: 150px;
    background: #2c3e50;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zenBreathe 4s ease-in-out infinite;
}

@keyframes zenPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes zenBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); }
    50% { transform: translate(-50%, -50%) scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Essence Section */
.essence-section {
    padding: 100px 0;
    background: white;
}

.essence-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: center;
}

.essence-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.essence-item {
    flex: 1;
    padding: 40px 20px;
    transition: all 0.3s ease;
    min-width: 0;
}

.essence-item:hover {
    transform: translateY(-10px);
}

.essence-symbol {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.essence-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.essence-item p {
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.6;
}

/* Tarifs Section */
.tarifs-section {
    padding: 100px 0;
    background: white;
}

.tarifs-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: center;
}

.tarifs-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.tarif-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    min-width: 0;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tarif-card.featured {
    border-color: #2c3e50;
    transform: scale(1.05);
}

.tarif-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tarif-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 30px;
    text-align: center;
}

.tarif-icon {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tarif-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tarif-price {
    font-size: 2rem;
    font-weight: 700;
}

.tarif-content {
    padding: 30px;
}

.tarif-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.tarif-content li {
    padding: 10px 0;
    color: #7f8c8d;
    position: relative;
    padding-left: 25px;
}

.tarif-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.btn-tarif {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

.btn-tarif:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Équipe Section */
.equipe-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.equipe-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: center;
}

.equipe-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.guide-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guide-photo {
    height: 200px;
    overflow: hidden;
}

.guide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-photo img {
    transform: scale(1.1);
}

.guide-info {
    padding: 25px;
    text-align: center;
}

.guide-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.guide-role {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.guide-info p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Témoignages Section */
.temoignages-section {
    padding: 100px 0;
    background: white;
}

.temoignages-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: center;
}

.temoignages-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.temoignage-slide {
    display: none;
    text-align: center;
}

.temoignage-slide.active {
    display: block;
}

.temoignage-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #2c3e50;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.temoignage-content p {
    font-style: italic;
    margin: 30px 0 20px 0;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1.1rem;
}

.temoignage-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info span {
    color: #2c3e50;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: #2c3e50;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #34495e;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #2c3e50;
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 10px;
}

.contact-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #34495e;
}

.zen-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    color: #2c3e50;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.zen-form button {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.zen-form button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

/* Footer */
.zen-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.footer-logo .zen-logo {
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0;
}

/* Cookie Link */
.cookie-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cookie-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Pratiques Section */
.pratiques-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pratiques-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: center;
}

.pratiques-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.pratique-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.pratique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #34495e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pratique-card:hover::before {
    transform: scaleX(1);
}

.pratique-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pratique-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pratique-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pratique-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pratique-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.pratique-duration,
.pratique-level {
    background: #2c3e50;
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Résultats Section */
.resultats-section {
    padding: 100px 0;
    background: white;
}

.resultats-section h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: center;
}

.resultats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.resultat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resultat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.1), rgba(52, 73, 94, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resultat-item:hover::before {
    opacity: 1;
}

.resultat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resultat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 1;
}

.resultat-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.resultat-item p {
    color: #7f8c8d;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
    .zen-container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .nav-inner {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .footer-content {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .footer-bottom {
        max-width: 1000px;
        padding: 30px 30px 0;
    }
}

@media (max-width: 768px) {
    .zen-container {
        padding: 0 20px;
    }
    
    .nav-inner {
        padding: 0 20px;
    }
    
    .tarifs-grid,
    .equipe-grid,
    .essence-grid,
    .pratiques-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .tarif-card,
    .guide-card,
    .essence-item,
    .pratique-card {
        flex: none;
    }
    
    .resultats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding: 30px 20px 0;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .zen-text h1 {
        font-size: 2.5rem;
    }
    
    .zen-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-inner {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .tarifs-section h2,
    .equipe-section h2,
    .temoignages-section h2,
    .essence-section h2,
    .pratiques-section h2,
    .resultats-section h2 {
        font-size: 2rem;
    }
    
    .tarif-header,
    .guide-info,
    .temoignage-content {
        padding: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .zen-text h1 {
        font-size: 2rem;
    }
    
    .zen-text p {
        font-size: 1rem;
    }
    
    .essence-symbol {
        font-size: 1rem;
    }
} 