/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Nunito Sans', Arial, Helvetica, sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
}

/* Header and Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3vw 1rem 3vw;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.site-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #222;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.2rem 0.5rem;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.hero-content h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3436;
    font-size: 2.5rem;
}

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

.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 3vw;
}

.about-text {
    flex: 2;
    min-width: 0;
}

.about-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    text-align: left;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    text-align: left;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.about-image img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: #fff;
}

/* Experience Section */
.experience {
    background-color: #f8f9fa;
}

.experience-item {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.experience-item h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.experience-item h4 {
    color: #636e72;
    margin-bottom: 1rem;
}

.experience-item p {
    margin-bottom: 0.5rem;
    color: #2d3436;
}

/* Contact Section (Custom) */
.contact-section {
    background: #e5e5e0;
    padding: 4rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #222;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
    text-align: center;
}

.contact-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #444;
    text-align: center;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 420px;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card span {
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 2.2rem);
    font-weight: 100;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    z-index: 2;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    top: 0;
    margin-top: 0;
    transform: translateY(-20px);
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
    border-radius: 48px;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.contact-card:nth-child(2) {
    border-radius: 240px 240px 0 0;
}
.contact-card:nth-child(2)::after {
    border-radius: 240px 240px 0 0;
}

@media (max-width: 1500px) {
    .contact-card {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1100px) {
    .contact-card {
        width: 250px;
        height: 250px;
    }
    .contact-cards {
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .contact-title {
        font-size: 2.5rem;
    }
    .contact-cards {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    .contact-card {
        width: 90vw;
        max-width: 350px;
        height: 180px;
    }
    .contact-card span {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    background-color: #2d3436;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .about-image {
        justify-content: center;
    }
    .about-image img {
        width: 220px;
        height: 220px;
    }
    .about-text h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 4vw;
    }
    .about-content {
        padding: 1rem 4vw;
    }
    .about-text p, .about-text ul {
        font-size: 1rem;
    }
} 