/* CSS Variables for theming */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --accent-primary: #ff6b6b;
    --accent-secondary: #ffa726;
    --accent-shadow: rgba(255, 107, 107, 0.3);
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #888888;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --accent-primary: #ff6b6b;
    --accent-secondary: #ffa726;
    --accent-shadow: rgba(255, 107, 107, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 0;
}

.theme-toggle:hover {
    opacity: 0.8;
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sun-icon {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.moon-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
}

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

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

.hero-content {
    max-width: 800px;
}

.profile-image {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.headshot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.subtitle-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.intro {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Section Styles */
.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Projects Section */
.projects {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}

.coming-soon {
    padding: 60px 20px;
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

.coming-soon:hover {
    border-color: #ff6b6b;
    transform: translateY(-5px);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.coming-soon h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.coming-soon p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .section-content {
        padding: 60px 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .headshot {
        width: 150px;
        height: 150px;
    }
    
    .name {
        font-size: 3rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .subtitle-item {
        font-size: 0.9rem;
    }
    
    .subtitle-icon {
        width: 16px;
        height: 16px;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coming-soon {
        padding: 40px 15px;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
} 