* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url('https://raw.githubusercontent.com/ardakeller/website/main/almond_blossom.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    opacity: 0;
    animation: bodyFadeIn 0.8s ease-out 0.3s forwards;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.card {
    background: #d4e3bc;
    padding: 60px 40px 40px;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.8s ease-out 0.6s forwards;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.name {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e2c;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 15px;
    opacity: 0;
    animation: textFadeIn 0.8s ease-out 0.9s forwards;
}

.email {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2c3e2c;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0;
    animation: textFadeIn 0.8s ease-out 1.1s forwards;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: textFadeIn 0.8s ease-out 1.3s forwards;
}

.icon {
    color: #2c3e2c;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    animation: iconFadeIn 0.6s ease-out 1.5s forwards;
}

.icon:nth-child(2) {
    animation-delay: 1.6s;
}

.icon:nth-child(3) {
    animation-delay: 1.7s;
}

.icon:hover {
    color: #1a2a1a;
    transform: translateY(-2px);
}

.museum-link {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.museum-icon {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.museum-link:hover .museum-icon {
    opacity: 0.9;
    transform: translateY(-2px);
    filter: brightness(1);
}

.tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #2c3e2c;
    color: #d4e3bc;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Aref Ruqaa Ink', serif;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.museum-link:hover .tooltip {
    opacity: 1;
    transform: translateY(-5px);
}

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

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

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

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

@media (max-width: 768px) {
    .card {
        padding: 50px 30px 30px;
    }
    
    .name {
        font-size: 2.8rem;
    }
    
    .email {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .icon {
        font-size: 1.5rem;
    }
    
    .museum-link {
        bottom: 20px;
        right: 20px;
    }
    
    .museum-icon {
        width: 24px;
        height: 24px;
    }
    
    .tooltip {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 40px 25px 25px;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .email {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .icon {
        font-size: 1.4rem;
    }
    
    .museum-link {
        bottom: 15px;
        right: 15px;
    }
    
    .tooltip {
        font-size: 0.65rem;
        padding: 5px 8px;
    }
}
