﻿/* ==========================================================================
   1. VARIABLES & CONFIGURATION DE BASE
   ========================================================================== */
:root {
    --primary-color: #922C92;
    --primary-hover: #732273;
    --secondary-color: #DDA15E; /* Or / Sable chaud */
    --secondary-hover: #BC6C25;
    --bg-color: #FAF6F0;        /* Crème doux et organique */
    --card-bg: #FFFFFF;
    --text-main: #2B222B;       /* Presque noir avec une pointe de violet */
    --text-muted: #6B5E6B;
    --shadow-soft: 0 8px 30px rgba(146, 44, 146, 0.04);
    --shadow-hover: 0 14px 40px rgba(146, 44, 146, 0.1);
    --radius: 16px;             /* Coins arrondis modernes */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 680px; /* Format idéal pour une Landing Page type "liens" */
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.header-spacing {
    margin-top: 80px;
}

/* ==========================================================================
   2. BARRE DE NAVIGATION (NAVBAR)
   ========================================================================== */
.navbar {
    background-color: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(146, 44, 146, 0.05);
}

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

.nav-logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(146, 44, 146, 0.08);
}

/* ==========================================================================
   3. EN-TÊTE DE LA PROFILE PAGE (ACCUEIL)
   ========================================================================== */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--card-bg);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: var(--shadow-soft);
}

.profile-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.profile-header .slogan {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

/* ==========================================================================
   4. LES SECTIONS DE LIENS (CARDS)
   ========================================================================== */
.links-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-left: 5px;
}

.card-link {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    text-decoration: none;
    color: var(--text-main);
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(146, 44, 146, 0.02);
    transition: var(--transition);
}

.card-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(146, 44, 146, 0.1);
}

.card-icon {
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    background-color: rgba(146, 44, 146, 0.06);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    transition: var(--transition);
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-arrow {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.9rem;
    transition: var(--transition);
}

.card-link:hover .card-arrow {
    transform: translateX(4px);
    opacity: 1;
    color: var(--primary-color);
}

/* Style premium pour la boutique principale */
.premium-card {
    background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
    border-left: 5px solid var(--secondary-color);
}
.premium-card .card-icon {
    background-color: rgba(221, 161, 94, 0.1);
    color: var(--secondary-color);
}

/* Couleurs discrètes au survol pour les icônes réseaux */
.card-link.youtube:hover .card-icon { background-color: #ffebee; color: #ff0000; }
.card-link.tiktok:hover .card-icon { background-color: #eceff1; color: #010101; }
.card-link.instagram:hover .card-icon { background-color: #fce4ec; color: #e1306c; }
.card-link.facebook:hover .card-icon { background-color: #e8f0fe; color: #1877f2; }

/* ==========================================================================
   5. PAGE À PROPOS
   ========================================================================== */
.about-section {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-wrapper {
    width: 100%;
    max-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background-color: rgba(146, 44, 146, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.about-text-content .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.about-text-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-cta {
    margin-top: 25px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(146, 44, 146, 0.2);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(146, 44, 146, 0.3);
}

/* Changement de disposition pour les tablettes et PC */
@media (min-width: 576px) {
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    .about-image-wrapper {
        flex: 1;
        height: 320px;
    }
    .about-text-content {
        flex: 1.3;
    }
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
.main-footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(146, 44, 146, 0.05);
    background-color: var(--card-bg);
    width: 100%;
}

.footer-url {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}