@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Montserrat:wght@600&display=swap');

/* Global Styles */
:root {
    --primary-color: #00B8D4;
    --secondary-color: #333;
    --accent-color: #FF4081;
    --light-bg: #f5f5f5;
    --text-light: #E0E0E0;
    --text-dark: #212121;
    --hover-effect: 0.3s ease;
    --transition-speed: 0.4s;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    transition: background-color var(--transition-speed);
}

#container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Typing Animation */
.welcome-text {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: center;
    margin: 50px 0;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.typing {
    display: inline-block;
    border-right: 4px solid var(--primary-color); /* Cursor effect */
}

/* Card Header */
.card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 12px;
    margin-bottom: 40px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    border-radius: 30px;
}

.nav-item:hover,
.nav-selected {
    background-color: var(--accent-color);
    color: white;
}

/* Card Body */
.card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
    background-color: #121212;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.profile-info {
    text-align: center;
    flex: 1 1 350px;
    max-width: 350px;
}

.profile-info img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    transition: transform var(--transition-speed);
}

.profile-info img:hover {
    transform: scale(1.1);
}

.profile-info h3 {
    font-size: 28px;
    margin-top: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.profile-info p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 8px;
}

.profile-info .status-symbol {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 8px;
}

/* About Section */
.about-info {
    flex: 2 1 550px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-info h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #1e1e1e;
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
    border-radius: 12px;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .card-body {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .profile-info {
        margin-bottom: 30px;
    }
}
