
/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rouge-tango: #cc2936;
    --bleu-aqua: #1e3a8a;
    --bleu-clair: #3b82f6;
    --rouge-passion: #dc2626;
    --blanc-perle: #fef7ff;
    --noir-velours: #1f2937;
    --or-accent: #fbbf24;
}
html {
  font-size: 16px;
}

body {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    line-height: 1.6;
    color: var(--noir-velours);
    background: linear-gradient(135deg, var(--bleu-aqua) 0%, var(--bleu-clair) 50%, var(--rouge-tango) 100%);
    min-height: 100vh;
    position: relative;
     word-spacing: normal;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    text-align: left;
    line-height: 1.6;
    font-size: 1rem;
}

body, p, h1, h2, h3, h4, h5, h6, span, li {
  word-spacing: normal !important;
  letter-spacing: normal !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-height: 1.6;
  font-size: 1rem;
}

p, h1, h2, h3, li {
  word-spacing: normal;
  letter-spacing: normal;
  white-space: normal;
}

@media screen and (max-width: 480px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 16px;
  }
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
}

/* Animation des bulles */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 30px;
    height: 30px;
    left: 20%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-delay: 1s;
}

.bubble:nth-child(4) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    width: 18px;
    height: 18px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0px) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateX(100px) rotate(180deg);
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(-200px) rotate(360deg);
    }
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanc-perle);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--blanc-perle);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--or-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--or-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--blanc-perle);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--blanc-perle);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-visual {
    position: relative;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.fish-dancer {
    font-size: 4rem;
    animation: tango-dance 3s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.tango-notes {
    position: absolute;
    font-size: 2rem;
    color: var(--or-accent);
    animation: notes-float 2s infinite alternate ease-in-out;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    border: 3px solid var(--blanc-perle);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc-perle);
    font-style: italic;
}

.hero-image::before {
    content: "tango-poisson-rouge";
    font-size: 0.9rem;
}

@keyframes tango-dance {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-30px) rotate(-15deg); }
    50% { transform: translateX(30px) rotate(15deg); }
    75% { transform: translateX(-15px) rotate(-8deg); }
}

@keyframes notes-float {
    0% { transform: translateY(0) scale(1); opacity: 0.7; }
    100% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

/* Main Content */
.main-content {
    background: var(--blanc-perle);
    position: relative;
    z-index: 10;
    border-radius: 2rem 2rem 0 0;
    margin-top: 2rem;
    overflow: hidden;
}

/* Story Section */
.story-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--rouge-tango);
    text-align: center;
    margin-bottom: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.story-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.aquarium-tango {
    width: 200px;
    height: 150px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.3), rgba(30, 58, 138, 0.5));
    border: 3px solid var(--bleu-aqua);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fish-couple {
    position: relative;
    animation: couple-dance 4s infinite ease-in-out;
}

.fish-lead, .fish-follow {
    font-size: 2rem;
    display: inline-block;
    margin: 0 10px;
}

.fish-lead {
    animation: lead-move 2s infinite alternate ease-in-out;
}

.fish-follow {
    animation: follow-move 2s infinite alternate ease-in-out reverse;
}

.story-image {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid var(--bleu-aqua);
    background: rgba(30, 58, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-aqua);
    font-style: italic;
    font-size: 0.8rem;
    text-align: center;
}

.story-image::before {
    content: "Image historique à venir";
}

@keyframes couple-dance {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(360deg); }
}

@keyframes lead-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(10px); }
}

@keyframes follow-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(204, 41, 54, 0.05), rgba(30, 58, 138, 0.05));
    max-width: 1200px;
    margin: 0 auto;
}

.steps-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--rouge-tango);
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid var(--rouge-tango);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--rouge-tango);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    color: var(--bleu-aqua);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--noir-velours);
    line-height: 1.6;
    text-align: justify;
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.content-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--rouge-tango);
    text-align: center;
    margin-bottom: 3rem;
}

.content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-wrapper p {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    min-width: 300px;
}

.section-image {
    width: 250px;
    height: 180px;
    border-radius: 10px;
    border: 3px solid var(--bleu-aqua);
    background: rgba(30, 58, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-aqua);
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
    flex-shrink: 0;
}

.section-image::before {
    content: "Image spécialisée à venir";
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--rouge-tango);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--bleu-aqua);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    border-left-color: var(--rouge-tango);
}

.faq-item h3 {
    color: var(--bleu-aqua);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--noir-velours);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--rouge-tango), var(--rouge-passion));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--or-accent);
    color: var(--noir-velours);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Dancing Script', cursive;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(251, 191, 36, 0.8); }
    100% { box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4); }
}

.cta-subtitle {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--noir-velours);
    color: var(--blanc-perle);
    text-align: center;
    padding: 2rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .story-section,
    .steps-section,
    .faq-section,
    .content-section {
        padding: 3rem 1rem;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .step,
    .faq-item {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-image {
        width: 200px;
        height: 150px;
    }
    .fish-dancer, .fish-lead, .fish-follow, .fish-couple {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

}