/*
Theme Name:   TTF Child
Theme URI:    https://tiard.com
Description:  Child theme for Twenty Twenty-Five
Author:       Lauriane Tiard
Author URI:   https://tiard.com
Template:     twentytwentyfive
Version:      1.0.0
Text Domain:  ttf-child
*/

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Your Font', sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== FULL-WIDTH AND RESPONSIVE LAYOUT ===== */
/* Supprime les marges/paddings par défaut pour une pleine largeur */
.site-content,
.wp-site-blocks,
body,
.entry-content,
.page-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

/* Conteneur pleine largeur pour les templates personnalisés */
.full-width-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Ajustements responsives */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }
}


/* ===== HIDE DEFAULT PAGE TITLES ===== */
.entry-title,
.page-title {
    display: none !important;
}
/* ===== VIVI PAGE STYLES ===== */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

/* Variables de couleur pour Vivi */
:root {
    --vivi-rose: #C84A5A;
    --vivi-rose-pale: #FDEEF0;
    --vivi-rose-mid: #F2B8C0;
    --vivi-gold: #E8A020;
    --vivi-purple: #4601CF;
    --vivi-deep: #1A0050;
    --vivi-text: #2a1018;
    --vivi-text-muted: #7a3a46;
}

/* Applique la police par défaut pour toute la page Vivi */
body.page-template-page-templates-product-vivi {
    font-family: 'DM Sans', sans-serif;
    color: var(--vivi-text);
    background: #fff;
    overflow-x: hidden;
}
/* ===== DEFAULT WORDPRESS MENU STYLING ===== */
/* Style pour le menu principal (emplacement 'primary') */
.default-menu,
.wp-block-navigation,
.wp-block-navigation__container {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    max-width: 100% !important;
}

.default-menu ul,
.wp-block-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.default-menu li,
.wp-block-navigation li {
    position: relative;
}

.default-menu a,
.wp-block-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s;
    display: inline-block;
}

.default-menu a:hover,
.wp-block-navigation a:hover {
    color: #0077b5; /* Bleu LinkedIn */
}

/* Sous-menu (dropdown) */
.default-menu ul ul,
.wp-block-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.default-menu ul ul li,
.wp-block-navigation ul ul li {
    width: 100%;
}

.default-menu ul ul a,
.wp-block-navigation ul ul a {
    display: block;
    padding: 10px 15px;
    width: 100%;
    white-space: nowrap;
}

.default-menu li:hover > ul,
.wp-block-navigation li:hover > ul {
    display: block;
}

/* Bouton LinkedIn dans le menu */
.default-menu .linkedin-button a,
.wp-block-navigation .linkedin-button a {
    background-color: #0077b5;
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.default-menu .linkedin-button a:hover,
.wp-block-navigation .linkedin-button a:hover {
    background-color: #005582;
}

/* ===== FOOTER STYLING ===== */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    margin: 0;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #0077b5;
}

.site-footer .widget {
    margin-bottom: 20px;
}

.site-footer .site-info {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Icône LinkedIn dans le pied de page */
.linkedin-footer {
    display: inline-block;
    margin-left: 10px;
    color: #fff;
    transition: color 0.3s;
}

.linkedin-footer:hover {
    color: #0077b5;
}

.linkedin-footer svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* ===== COMPATIBILITY WITH TWENTY TWENTY-FIVE ===== */
/* Force full-width for block themes */
.wp-site-blocks {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove default spacing from blocks */
.wp-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ===== ORIGINAL STYLES (from your file) ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== VIVI PAGE LAYOUT ===== */
/* Conteneur principal */
.vivi-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Hero */
.vivi-page .hero {
    background: var(--vivi-rose-pale);
    padding: 3.5rem 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.vivi-page .hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--vivi-rose-mid);
    opacity: 0.35;
}

.vivi-page .hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 30%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--vivi-gold);
    opacity: 0.12;
}

.vivi-badge {
    display: inline-block;
    background: var(--vivi-rose);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.1rem;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--vivi-deep);
    margin: 0 0 0.6rem;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.hero-title em {
    color: var(--vivi-rose);
    font-style: italic;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--vivi-text-muted);
    font-weight: 300;
    margin: 0 0 1.8rem;
    max-width: 360px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Boutons */
.btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    margin-right: 15px;
}

.btn-rose {
    background: var(--vivi-rose);
    color: #fff;
}

.btn-rose:hover {
    background: #b03248;
}

.btn-rose-outline {
    background: var(--vivi-rose-pale);
    color: var(--vivi-rose);
    border: 1px solid var(--vivi-rose);
}

.btn-rose-outline:hover {
    background: var(--vivi-rose);
    color: #fff;
}

/* Section Features */
.vivi-page .features {
    padding: 4rem 0;
    text-align: center;
}

.vivi-page .features h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--vivi-deep);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.feature-card h3 {
    color: var(--vivi-deep);
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0.8rem;
}

/* Section Testimonials */
.vivi-page .testimonials {
    padding: 4rem 0;
    background: var(--vivi-rose-pale);
    text-align: center;
}

.vivi-page .testimonials h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--vivi-deep);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    color: var(--vivi-text);
    margin-bottom: 1rem;
}

.testimonial-card span {
    color: var(--vivi-text-muted);
    font-size: 0.9rem;
}
/* ===== COMPATIBILITY WITH TWENTY TWENTY-FIVE ===== */
/* Force full-width for block themes */
.wp-site-blocks {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove default spacing from blocks */
.wp-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ===== ORIGINAL STYLES (from your file) ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIARD ABOUT PAGE — OVERRIDES ===== */   👈 ajoutez tout ici
.tiard-about .ta-hero,
.tiard-about .ta-manifesto {
    background-color: #1A0050 !important;
}
/* ... reste du code ... */