/* ============================================
   CASA DAS MARIAS — BIO/LINKTREE
   ============================================ */

/* --- CSS VARIABLES / DESIGN TOKENS --- */
:root {
    /* Brand Colors - Cool, serene, blue palette */
    --color-primary: #69798B;
    --color-primary-dark: #526374;
    --color-primary-light: #9AADB8;
    --color-primary-lighter: #C5D3DB;
    
    --color-secondary: #5B6872;
    --color-secondary-dark: #3E4A53;
    
    --color-accent: #6B95A9;
    --color-accent-light: #A6C4D2;
    
    --color-cream: #F2F5F7;
    --color-cream-dark: #DFE6EB;
    --color-warm-white: #FAFBFC;
    --color-warm-bg: #E3EBF0;
    
    --color-text: #1F2B3D;
    --color-text-light: #5B6872;
    --color-text-muted: #8590A0;
    
    --color-black: #101218;
    --color-white: #FFFFFF;
    
    --color-success: #7A9E7E;
    --color-gold: #6EA1C9;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   BIO SPECIFIC STYLES
   ============================================ */

.bio-page {
    font-family: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    background-color: var(--color-warm-bg);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-image: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-warm-bg) 100%);
}

.bio-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.bio-header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInDown 0.8s ease-out;
}

.bio-profile-img {
    width: 200px;
    height: auto;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-profile-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bio-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.bio-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.bio-subtitle em {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-style: italic;
    font-size: 1.3rem;
}

/* Links Container */
.bio-links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bio-link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--color-white);
    padding: 18px 24px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bio-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.bio-link-card:hover .bio-link-text,
.bio-link-card:hover .bio-icon {
    color: var(--color-white);
}

.bio-icon {
    position: absolute;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.bio-link-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin: 0 40px;
}

/* Footer */
.bio-footer {
    margin-top: 60px;
    text-align: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

.bio-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.bio-social-links a {
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.bio-social-links a:hover {
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.bio-footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
