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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f8f8;
    --accent-color: #6366f1;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #f8f8f8;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-quote p {
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-quote cite {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-image: url('images/nyc-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 248, 248, 0.8);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-image {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.pro-headshot-img {
    max-width: 250px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    border: 4px solid var(--secondary-color);
}

.pro-headshot-img:hover {
    transform: scale(1.02);
}

.awkward2-img {
    max-width: 250px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    border: 4px solid var(--secondary-color);
}

.awkward2-img:hover {
    transform: scale(1.02);
}

.about-content p {
    color: #444d5a;
}

/* Projects Section */
.projects {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cryska-img {
    max-width: 75%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.cryska-img:hover {
    transform: scale(1.02);
}

.project-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.project-content p {
    color: rgba(248, 248, 248, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--secondary-color);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-content h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.footer p {
    color: rgba(248, 248, 248, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-quote {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .project-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-content h2 {
        font-size: 2rem;
    }
    
    .contact-links {
        flex-direction: column;
    }
    
    .contact-link {
        padding: 0.875rem 1.5rem;
    }
    
    .cryska-img {
        max-width: 75%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        font-size: 1.5rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .project-content h2 {
        font-size: 1.8rem;
    }
    
    .pro-headshot-img {
        max-width: 250px;
        width: 250px;
        height: 250px;
    }
    
    .awkard2-img {
        max-width: 250px;
        width: 250px;
        height: 250px;
    }
    
    .about, .projects, .contact {
        padding: 4rem 0;
    }
}

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

/* Selection styles */
::selection {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* Focus styles for accessibility */
.contact-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 2rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: var(--shadow);
    text-decoration: none;
}

.social-icon:hover, .social-icon:focus {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    outline: none;
}

@media (max-width: 480px) {
    .social-icons {
        gap: 1rem;
    }
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}

.linkedin-headshot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 1rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background: #fff;
    flex-shrink: 0;
}

.cryska-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2.25rem;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}

.cryska-link:hover, .cryska-link:focus {
    background: #4f46e5;
    transform: translateY(-2px) scale(1.04);
    box-shadow: var(--shadow-lg);
    outline: none;
} 