@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700;800&family=Press+Start+2P&display=swap');

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

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

@media (pointer: fine) {
    body {
        cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='24' font-size='24'>🐱</text></svg>"), auto;
    }

    a, button, [role="button"] {
        cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='24' font-size='24'>😻</text></svg>"), pointer;
    }
}

.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: clamp(150px, 40vw, 350px);
    height: clamp(150px, 40vw, 350px);
    object-fit: contain;
    max-width: 100%;
}

h1 {
    font-family: 'Press Start 2P', system-ui;
    font-size: clamp(1.4rem, 4vw + 0.5rem, 2.2rem); /* Adjusted for pixel font */
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.subtitle {
    color: #a0a0a0;
    font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
    margin-bottom: 25px;
}

.header-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.header-links a {
    color: #b691ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.header-links a:hover {
    color: #d2bbff;
    text-decoration: underline;
}

.team-section h2 {
    font-size: clamp(1.3rem, 3vw + 0.8rem, 1.6rem);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-container {
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

.team-member {
    display: flex;
    padding: 25px;
    gap: 20px;
    align-items: flex-start;
}

.team-member + .team-member {
    border-top: 1px solid #2a2a2a;
}

.avatar {
    width: clamp(70px, 12vw + 10px, 100px);
    height: clamp(70px, 12vw + 10px, 100px);
    border-radius: 50%;
    object-fit: cover;
    max-width: 100%;
    flex-shrink: 0;
    background-color: #222;
}

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    font-size: clamp(1.1rem, 2vw + 0.8rem, 1.3rem);
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.description {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Specific styling for the Amharic text to look somewhat like the image */
.team-member:nth-child(1) .description {
    font-size: 0.85rem;
    line-height: 1.6;
}

.member-links {
    display: flex;
    gap: 15px;
}

.member-links a {
    color: #b691ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.member-links a:hover {
    color: #d2bbff;
    text-decoration: underline;
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        margin-bottom: 20px;
    }

    .team-member {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .header-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    header {
        margin-bottom: 40px;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-member + .team-member {
        border-top: 1px solid #2a2a2a;
    }
    
    .member-links {
        justify-content: center;
        margin-top: 5px;
    }
}
