/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #121826;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00c2d1;
    margin-bottom: 16px;
}

.title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.description {
    font-size: 1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #0f1722;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    background-color: #1a202c;
    border-radius: 8px;
    padding: 40px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* Skills Section */
.skills {
    padding: 80px 0;
}

.skills-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: #1a202c;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 194, 209, 0.1);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.skill-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.skill-card p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #0f1722;
}

.contact-content {
    background-color: #1a202c;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.contact-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-icon {
    font-size: 24px;
}

.email {
    color: #00c2d1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: text-decoration 0.3s ease;
}

.email:hover {
    text-decoration: underline;
}

/* Buttons */
.cta-button {
    background-color: #00c2d1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #00aabc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .skills-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .skill-card {
        max-width: 100%;
    }
    
    .about-content,
    .contact-content {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.25rem;
    }
    
    .about,
    .skills,
    .contact {
        padding: 60px 0;
    }
}

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