/* ===================================
   Variables de couleurs Natur'Boost
   =================================== */
:root {
    --primary-green: #2a6232;
    --light-green: #91c148;
    --pale-green: #E5FFC5;
    --teal: #3B9187;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(42, 98, 50, 0.1);
    --shadow-hover: rgba(42, 98, 50, 0.2);
}

/* ===================================
   Styles généraux
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--pale-green) 0%, #ffffff 50%, var(--pale-green) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-dark);
}

.container {
    max-width: 680px;
    width: 100%;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow);
    padding: 40px 30px;
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   Animation d'entrée
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Header / Profil
   =================================== */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    
    display: flex;
    justify-content: center;
}

.logo {
    width: 220px;
    height: 220px;

}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 12px;
}

.coach-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #91c148;
    opacity: 0.9;
}

/* ===================================
   Section Liens
   =================================== */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(145, 193, 72, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-color: var(--primary-green);
}

.link-button:active {
    transform: translateY(-1px);
}

/* Icônes des liens */
.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    background: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.link-button:hover .link-icon {
    transform: rotate(5deg) scale(1.1);
}

.link-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.link-icon.facebook {
    background: #1877f2;
}

.link-icon.email {
    background: var(--teal);
}

.link-icon.phone {
    background: var(--light-green);
}

/* Contenu des liens */
.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.link-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Flèche des liens */
.link-arrow {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(5px);
}

/* ===================================
   Footer
   =================================== */
.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--pale-green);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 500;
}

.footer-tagline i {
    color: var(--light-green);
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .link-button {
        padding: 16px 20px;
        gap: 14px;
    }

    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 25px 18px;
    }

    .brand-name {
        font-size: 1.7rem;
    }

    .coach-name {
        font-size: 1.1rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .link-button {
        padding: 14px 16px;
        gap: 12px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===================================
   Amélioration de l'accessibilité
   =================================== */
.link-button:focus {
    outline: 3px solid var(--light-green);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}