/* Base styles */
:root {
    --primary-color: #2e5bff;
    --secondary-color: #fe5864;
    --dark-color: #242832;
    --light-color: #f5f7fa;
    --text-color: #333333;
    --text-secondary: #585e6d;
    --text-light: #8e94a3;
    --border-color: #e8ecf2;
    --accent-color: #a3a8b6;
    --hover-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e8e4d8; /* Darker beige background */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 1.2s ease-in-out forwards;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.bio {
    flex: 1;
}

.bio h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio p {
    margin-bottom: 1rem;
    font-weight: 300;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.divider {
    margin: 1.5rem 0;
    border: none;
    height: 1px;
    background-color: #bbb6a7;
    width: 100%;
}

.writings {
    font-style: italic;
    animation-delay: 0.7s;
}

.writings a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #555;
    transition: border-bottom 0.3s;
}

.writings a:hover {
    border-bottom: 2px solid #555;
}

.profile {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.image {
    margin-right: 20px;
}

.image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #d8d0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #333;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    text-decoration: underline;
    color: #555;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bio {
        text-align: center;
    }
    
    .divider {
        margin: 1.5rem auto;
    }
    
    .social-links {
        margin-top: 1rem;
    }
}

/* Add this to your existing CSS */

.cal-link {
    color: #2e5bff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #2e5bff;
    transition: border-bottom 0.2s, color 0.2s;
}

.cal-link:hover {
    color: #1a46ff;
    border-bottom: 2px solid #1a46ff;
}

.text-link {
    color: #333; /* Same color as the text */
    text-decoration: none;
    border-bottom: 1px solid #555;
    transition: border-bottom 0.3s;
}

.text-link:hover, 
.text-link:visited, 
.text-link:active {
    color: #333; /* Keep the same color even after visiting */
    border-bottom: 2px solid #555;
    text-decoration: none;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
} 