/* Modern Personal Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #000000;
    --text-secondary: #333333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'IBM Plex Mono', 'Poppins', 'Inter', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    background: var(--white);
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    opacity: 0.9;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Hero layout with photo */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    text-align: left;
}

.hero-actions {
    margin-top: 1rem;
    text-align: center;
}

.hero-photo {
    display: flex;
    justify-content: center;
}

.photo-ring {
    --ring-size: 320px;
    width: var(--ring-size);
    height: var(--ring-size);
    padding: 6px;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, #667eea, #764ba2, #00f2fe, #667eea);
    box-shadow: var(--shadow-hover);
}

.photo-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    margin: 0 0.5rem;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--text-primary);
}

/* Experience Section */
.experience {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.experience h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.experience-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.experience-list li {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.experience-list li:hover {
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.1);
    box-shadow: var(--shadow);
}

.experience-main {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.experience-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    opacity: 0.9;
}

/* Interests Section */
.interests {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.interests h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.interests-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.interests-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.interests-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.interests-images img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.interests-images img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
footer {
    background: var(--white);
    color: var(--text-primary);
    text-align: center;
    padding: 4rem 0 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer p {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .photo-ring {
        --ring-size: 260px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    .nav ul {
        gap: 1rem;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
    .container {
        padding: 0 1rem;
    }
    .interests-images {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .interests-images img {
        width: 300px;
        height: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
