/* ====================================
   VARIABLES CSS - VOS COULEURS
   ==================================== */
:root {
    --color-primary: #d2c5f0;
    --color-secondary: #bff0ff;
    --color-accent: #ffeaf3;
    --color-text: #333;
    --color-white: #ffffff;
    --color-green: #77dd77;
    --color-blue: #89cff0;
    --color-red: #ff6961;
    --gradient-main: linear-gradient(180deg, #bff0ff, #ffeaf3);
    --gradient-reverse: linear-gradient(180deg, #ffeaf3, #bff0ff);
}

/* ====================================
   INTRO HERO ACCUEIL
   ==================================== */
.intro-hero {
    text-align: center;
    padding: 50px 30px 30px 30px;
    background: var(--gradient-main);
    border-radius: 30px;
    margin: 20px auto;
    max-width: 1200px;
}

.intro-hero h1 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 15px;
    text-shadow: 0px 0px 0.5px var(--color-primary), 0px 0px 0.5px var(--color-primary);
}

.intro-hero .tagline {
    font-family: 'Nohemi', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
}

/* ====================================
   SECTIONS DE CONTENU ACCUEIL
   ==================================== */
.content-sections {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-sections section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-sections h2 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--color-text);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: none;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.content-sections h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.content-sections p {
    font-family: 'Nohemi', sans-serif;
    font-size: 11pt;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.feature-card {
    padding: 30px;
    background: var(--gradient-main);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text);
    font-size: 10.5pt;
    margin: 0;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.benefit {
    padding: 30px;
    background: rgba(210, 197, 240, 0.2);
    border-radius: 20px;
    border-left: 5px solid var(--color-primary);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(210, 197, 240, 0.35);
    border-left-width: 8px;
}

.benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Cities Section */
.cities-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--color-text);
    font-weight: 300;
}

.cities-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.city-highlight {
    padding: 30px;
    background: var(--gradient-reverse);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.city-highlight:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.city-highlight h3 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Tips Section */
.tip {
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(191, 240, 255, 0.25);
    border-radius: 15px;
    border-left: 5px solid var(--color-secondary);
}

.tip h3 {
    margin-bottom: 12px;
    font-weight: 700;
}

/* FAQ Section Interactive */
.faq-section {
    background: rgba(255, 234, 243, 0.2) !important;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(210, 197, 240, 0.1);
}

.faq-question h3 {
    color: var(--color-text);
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    font-family: 'Nohemi', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin: 0;
    font-size: 10.5pt;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--color-primary);
    border-radius: 25px;
}

.final-cta h2 {
    color: var(--color-white);
    margin-bottom: 25px;
    text-shadow: none;
}

.final-cta p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    color: var(--color-text);
    font-size: 1.05rem;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 45px;
    margin-top: 30px;
    background: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 105, 97, 0.35);
}

.cta-button-large:hover {
    background: #ff4742;
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(255, 105, 97, 0.5);
}

/* ====================================
   ARTICLES - DESIGN AMÉLIORÉ
   ==================================== */
.article {
    font-family: 'Nohemi', sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.article .hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.article .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.article .hero h1,
.article .hero .hero-description {
    position: relative;
    z-index: 2;
}

.article .hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.article .hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.article .content {
    padding: 40px;
    background: var(--color-white);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.article .content h2 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--color-text);
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
}

.article .content h2:first-child {
    margin-top: 0;
}

.article .content h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text);
    margin: 30px 0 15px 0;
}

.article .content h4 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 25px 0 12px 0;
}

.article .content p {
    font-family: 'Nohemi', sans-serif;
    font-size: 11pt;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 18px;
}

.article .content ul,
.article .content ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article .content li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 10.5pt;
    line-height: 1.7;
}

.article .content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.article .content ol {
    counter-reset: item;
}

.article .content ol li {
    counter-increment: item;
}

.article .content ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Catégories de restaurants */
.restaurant-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.category {
    padding: 30px;
    background: var(--gradient-main);
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    font-size: 10.5pt;
    line-height: 1.6;
}

.category li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-text);
    font-weight: bold;
}

.category li strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Budget recommendations */
.budget-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.budget-card {
    padding: 30px;
    background: rgba(210, 197, 240, 0.25);
    border-radius: 18px;
    border-left: 5px solid var(--color-primary);
    transition: all 0.3s ease;
}

.budget-card:hover {
    background: rgba(210, 197, 240, 0.4);
    border-left-width: 8px;
}

.budget-card h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 18px;
}

.budget-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.budget-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 10.5pt;
}

.budget-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.8rem;
    line-height: 0.7;
}

/* Tips grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.tip-card {
    padding: 30px;
    background: rgba(191, 240, 255, 0.25);
    border-radius: 18px;
    border-left: 5px solid var(--color-secondary);
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: rgba(191, 240, 255, 0.4);
    border-left-width: 8px;
}

.tip-card h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 18px;
}

.tip-card p {
    margin-bottom: 15px;
    font-size: 10.5pt;
    line-height: 1.7;
}

.tip-card p:last-child {
    margin-bottom: 0;
}

.tip-card p strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Practical info */
.practical-info {
    padding: 30px;
    background: rgba(255, 234, 243, 0.35);
    border-radius: 18px;
    margin: 35px 0;
    border: 2px solid rgba(255, 234, 243, 0.6);
}

.practical-info p {
    margin-bottom: 18px;
}

.practical-info p:last-child {
    margin-bottom: 0;
}

.practical-info strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Advantages list */
.advantages-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.advantages-list li {
    margin-bottom: 18px;
    padding: 20px;
    padding-left: 60px;
    position: relative;
    background: rgba(119, 221, 119, 0.12);
    border-radius: 12px;
    font-size: 10.5pt;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.advantages-list li:hover {
    background: rgba(119, 221, 119, 0.2);
    transform: translateX(5px);
}

.advantages-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--color-green);
    font-size: 1.8rem;
    font-weight: bold;
}

.advantages-list li strong {
    color: var(--color-text);
    font-weight: 600;
}

/* CTA dans articles */
.article .content .cta {
    margin: 50px 0;
    padding: 50px;
    background: var(--color-primary);
    border-radius: 20px;
    text-align: center;
}

.article .content .cta h2 {
    color: var(--color-white);
    margin-bottom: 20px;
    border: none;
    padding: 0;
    text-shadow: none;
}

.article .content .cta p {
    color: var(--color-text);
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

/* SEO Section articles */
.article .seo-section {
    padding: 40px;
    background: rgba(210, 197, 240, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(210, 197, 240, 0.4);
}

.article .seo-section h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.article .seo-section p {
    margin-bottom: 18px;
    font-size: 10.5pt;
    line-height: 1.8;
}

.article .seo-section p:last-child {
    margin-bottom: 0;
}

.article .seo-section strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ====================================
   PAGE BLOG / LISTE ARTICLES
   ==================================== */
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    padding: 60px 30px;
    background: var(--gradient-main);
    border-radius: 25px;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 15px;
    text-shadow: 0px 0px 0.5px var(--color-primary);
}

.blog-header p {
    font-family: 'Nohemi', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

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

.article-card-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-card-content {
    padding: 25px;
}

.article-card h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card p {
    font-family: 'Nohemi', sans-serif;
    font-size: 10pt;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-card-meta {
    font-family: 'Nohemi', sans-serif;
    font-size: 9pt;
    color: #999;
    margin-bottom: 15px;
}

.article-card .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 9.5pt;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-card:hover .read-more {
    background: var(--color-red);
    transform: translateX(5px);
}

/* ====================================
   SECTION DERNIERS ARTICLES (ACCUEIL)
   ==================================== */
.latest-articles-section {
    background: rgba(210, 197, 240, 0.1) !important;
    padding: 50px 40px !important;
}

.latest-articles-section h2 {
    margin-bottom: 40px !important;
}

.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.latest-article-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.latest-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.latest-article-card h3 {
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.latest-article-card p {
    font-size: 10pt;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.view-all-articles {
    text-align: center;
    margin-top: 35px;
}

.view-all-articles a {
    display: inline-block;
    padding: 15px 35px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Nohemi', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-all-articles a:hover {
    background: var(--color-red);
    transform: scale(1.05);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    .intro-hero h1 {
        font-size: 2rem;
    }
    
    .intro-hero .tagline {
        font-size: 1rem;
    }
    
    .content-sections {
        padding: 0 15px;
    }
    
    .content-sections section {
        padding: 25px;
    }
    
    .content-sections h2 {
        font-size: 1.6rem;
    }
    
    .features-grid,
    .benefits,
    .cities-highlights,
    .restaurant-categories,
    .budget-recommendations,
    .tips-grid,
    .articles-grid,
    .latest-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article .hero {
        padding: 50px 25px;
    }
    
    .article .hero h1 {
        font-size: 2rem;
    }
    
    .article .hero-description {
        font-size: 1.1rem;
    }
    
    .article .content {
        padding: 25px;
    }
    
    .article .content h2 {
        font-size: 1.6rem;
    }
    
    .article .content h3 {
        font-size: 1.3rem;
    }
    
    .article .content .cta {
        padding: 30px 20px;
    }
    
    .blog-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
}