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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, hsl(270, 100%, 20%), hsl(240, 80%, 15%));
    color: hsl(0, 0%, 98%);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    padding: 2rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: hsl(0, 0%, 98%);
    margin-bottom: 0.5rem;
}

/* Section titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(0, 0%, 98%);
    margin-bottom: 3rem;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 3rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: hsl(285, 100%, 70%);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.description {
    color: hsl(240, 5%, 65%);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: linear-gradient(145deg, hsl(180, 45%, 35%), hsl(180, 50%, 30%));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px hsl(180, 50%, 10%, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 0 40px hsl(180, 50%, 50%, 0.2);
    transform: translateY(-2px);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-container {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid hsl(285, 100%, 70%, 0.3);
    transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
    .avatar-container {
        width: 8rem;
        height: 8rem;
    }
}

.team-card:hover .avatar-container {
    border-color: hsl(285, 100%, 70%, 0.6);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(0, 0%, 98%);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .member-name {
        font-size: 1.75rem;
    }
}

.member-description {
    color: hsl(240, 21%, 85%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn  {
    text-decoration: none;
    background: hsl(0, 0%, 0%);
    color: hsl(0, 0%, 98%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.contact-btn:hover {
    background: hsl(0, 0%, 15%);
    transform: scale(1.05);
}

.contact-btn:active {
    transform: scale(0.98);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-icon {
    color: hsl(285, 100%, 70%);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.contact-text a{
    color: hsl(240, 100%, 98%);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .description,
    .contact-text {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: hsl(285, 100%, 70%, 0.3);
    color: hsl(0, 0%, 98%);
}