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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    overflow-x: hidden;
    font-weight: 300;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #fafafa;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-name {
    font-size: clamp(4rem, 10vw, 5rem);
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #888;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 20px;
    font-style: italic;
}

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

.portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.portrait:hover {
    transform: scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

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

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    color: #1a1a1a;
    margin-bottom: 0;
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 200;
    letter-spacing: 3px;
}

/* About Section */
.about {
    background: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.achievements {
    margin: 4rem 0;
}

.achievement {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: #fafafa;
    border-left: 3px solid #d4af37;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.achievement:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left-color: #b8941f;
}

.achievement h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.achievement p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.about-closing {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Expertise Section - Compact Three Column Layout */
.expertise {
    background: #ffffff;
    padding: 4rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1rem;
    row-gap: 2rem;
}

.expertise-item {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
}

.expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expertise-video {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.video-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.expertise-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.expertise-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.expertise-item:hover .video-overlay {
    opacity: 1;
}

.expertise-item:hover .expertise-video-img {
    transform: scale(1.05);
}

.video-overlay .play-button {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.expertise-content {
    padding: 1rem 1.2rem;
}

.expertise-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.expertise-category {
    color: #d4af37;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.expertise-content p {
    color: #666;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 300;
}

/* Creative Work Section */
.creative-work {
    background: #ffffff;
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.creative-item {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.creative-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.creative-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.creative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.creative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.creative-image:hover .creative-overlay {
    opacity: 1;
}

.creative-image:hover img {
    transform: scale(1.1);
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.creative-overlay p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.creative-content {
    padding: 2.5rem;
}

.creative-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.style-label {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.creative-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Experience Section */
.experience {
    background: #fafafa;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-left: 3px solid #d4af37;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left-color: #b8941f;
}

.timeline-date {
    font-weight: 600;
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: capitalize;
}

.timeline-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.timeline-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.timeline-achievements {
    list-style: none;
    margin-top: 1.5rem;
}

.timeline-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-achievements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Skills Section */
.skills {
    background: #ffffff;
}

.skills-content {
    max-width: 1000px;
    margin: 0 auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.skill-category {
    background: #fafafa;
    padding: 2.5rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #d4af37;
}

.skill-category h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.skill-tag:hover {
    background: #d4af37;
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3, .contact-resume h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.contact-info p, .contact-resume p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-item span {
    color: #666;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-1px);
    border-color: #d4af37;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .expertise-video {
        height: 450px;
    }
    
    .expertise-content {
        padding: 0.8rem 1rem;
    }
    
    .creative-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .creative-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .expertise-video {
        height: 400px;
    }
    
    .expertise-content {
        padding: 0.8rem 0.8rem;
    }

    .timeline-item {
        padding: 2rem;
    }

    .timeline-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .achievement, .timeline-item, .skill-category {
        padding: 2rem;
    }

    .creative-content, .expertise-content {
        padding: 2rem;
    }
    
    .expertise-video {
        height: 350px;
    }
    
    .expertise-content {
        padding: 0.6rem 0.6rem;
    }
    
    .expertise-content h3 {
        font-size: 1.1rem;
    }
    
    .expertise-content p {
        font-size: 0.75rem;
    }
}
