/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Quicksand:wght@300;400;600&display=swap');

:root {
    --bg-color: #fdf2f8;
    --text-color: #5d5d5d;
    --accent-color: #fbcfe8;
    --accent-dark: #f472b6;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    /* Image Prompt: "anime style pastel sky background, fluffy clouds, pink and lavender gradient, dreamy, magical atmosphere, high quality, 4k, soft lighting, no characters" */
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Floating Animation for Background Elements */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Main Container - The "Card" */
.container {
    width: 100%;
    max-width: 480px;
    min-height: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Avatar */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Typography */
h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tagline {
    font-style: italic;
    color: #888;
    margin-bottom: 1.5rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.btn {
    display: block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--accent-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 114, 182, 0.3);
}

/* Decorative Elements */
.deco {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

.deco-top-right {
    top: -20px;
    right: -20px;
    width: 80px;
    animation: float 3s ease-in-out infinite;
}

.deco-bottom-left {
    bottom: -20px;
    left: -20px;
    width: 60px;
    animation: float 4s ease-in-out infinite reverse;
}

/* Grid for Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 1rem;
}

.gallery-item {
    width: 100%;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Back Button */
.back-btn {
    align-self: flex-start;
    margin-bottom: 1rem;
    color: var(--accent-dark);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-btn:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.7rem;
    opacity: 0.6;
}