/* style.css */
:root {
    --bg-color: #B2A4D4; 
    --text-color: #333;
    --button-bg: #fff;
    --button-hover: #f8bbd0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px; /* Limits width for a mobile-first look */
    padding: 2rem;
    position: relative;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Avatar Styling */
.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    /* The Anti-Menu Rules */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    user-select: none; /* Standard syntax */
    -webkit-user-drag: none; /* Stops the image from being dragged around */
}

.avatar-container a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}


/* The Press & Hold Prompt */
.interactive-prompt {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
}

/* Link Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-button {
    display: block;
    padding: 15px 20px;
    background-color: var(--button-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.link-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@keyframes fall {
    0% { transform: translateY(-5vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(0) scale(1); }
    100% { transform: translateY(100vh) scale(1); opacity: 0; }
}

.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicking through the hearts */
    z-index: -1; /* Puts hearts behind the main content */
}