:root {
    /* =======================================================
       🌲 HANNA'S THEME - GLASSMORPHISM & FOREST BACKGROUND
       ======================================================= */
    --text-color: #ede8df;
    /* Soft, warm beige */

    /* Sleek translucent primary color (Terracotta/Rust) */
    --primary-glass: rgba(223, 118, 83, 0.35);
    --primary-border: rgba(223, 118, 83, 0.6);
    --primary-pulse: rgba(223, 118, 83, 0.4);
    /* ======================================================= */
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    /* Set a dark forest green to fill the empty sides on desktop monitors */
    background-color: #1b2620;

    /* The overlay gradient and your image */
    background-image: linear-gradient(rgba(27, 38, 32, 0.75), rgba(27, 38, 32, 0.85)), url('background.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    /* Default for mobile phones: cover the whole screen */
    background-size: cover;

    color: var(--text-color);
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    min-height: 100vh;
    padding: 1.5rem;
    /* Changed to equal padding on all sides */
}

.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    z-index: 1;
}

/* Smaller Profile Area */
.profile-pic {
    width: 125px;
    /* Reduced size for a smaller, sleeker look */
    height: 125px;
    /* Reduced size */
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Helps text stand out against background */
}

.bio {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons Container */
.links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Translucent Glass Button Styles */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 1.1rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);

    /* The Glassmorphism Effect */
    background-color: rgba(255, 255, 255, 0.08);
    /* Very sheer white */
    backdrop-filter: blur(12px);
    /* Frosted glass blur */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Thin translucent border */

    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    /* Slightly brighter on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Fanvue Primary CTA - Translucent Orange/Terracotta */
.primary-btn {
    background-color: var(--primary-glass);
    border: 1px solid var(--primary-border);
    animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.primary-btn:hover {
    background-color: rgba(223, 118, 83, 0.5);
    /* Richer color on hover */
    border: 1px solid rgba(223, 118, 83, 0.8);
}

/* Custom Pulse Animation for Translucent Button */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 var(--primary-pulse);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(223, 118, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(223, 118, 83, 0);
    }
}

/* =======================================================
   💻 DESKTOP FIX FOR PORTRAIT BACKGROUNDS
   ======================================================= */
@media (min-width: 768px) {
    body {
        /* On wider screens, restrict the background to the height of the screen 
           so it doesn't stretch and crop awkwardly. */
        background-size: contain;
    }
}