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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #0000FF;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a:hover {
    color: #0000FF;
    background-color: #FFFFFF;
    padding: 0.5rem 1rem;
}

/* Landing Section */
.landing {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000FF;
    position: relative;
}

.landing-content {
    text-align: center;
    margin-top: 4rem;
}

.main-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.name-line {
    display: block;
}

.location-info {
    margin-top: 3.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.location-info.show {
    opacity: 1;
    transform: translateY(0);
}

.location-line, .education-line {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: #0000FF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-column {
    text-align: center;
}

.about-column h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.about-column ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.about-column li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #FFFFFF;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.about-column li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

.about-column p {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.7;
    text-align: left;
}

/* Work Section */
.work {
    padding: 8rem 0;
    background-color: #0000FF;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.work-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.work-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.work-item h3 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.work-item h3 a:hover {
    color: #0000FF;
    background-color: #FFFFFF;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}

.work-item p {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-tags span {
    background-color: #FFFFFF;
    color: #0000FF;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Obsessions Section */
.obsessions {
    padding: 8rem 0;
    background-color: #0000FF;
}

.obsessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.obsession-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.obsession-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.obsession-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.obsession-item p {
    color: #FFFFFF;
    font-size: 1rem;
}

/* Resume Section */
.resume {
    padding: 8rem 0;
    background-color: #0000FF;
    text-align: center;
}

.resume-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.resume-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #0000FF;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 2px solid #FFFFFF;
    transition: all 0.3s ease;
}

.resume-button:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #0000FF;
    text-align: center;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.contact-icon:hover {
    background-color: #FFFFFF;
    color: #0000FF;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar a {
        font-size: 0.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .obsessions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-icons {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .work-item, .obsession-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .obsessions-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
} 