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

:root {
    --primary-color: #4a4a4a;
    --accent-color: #d4c1ec;
    --accent-secondary: #e1bb80;
    --text-dark: #3d3d3d;
    --text-light: #6b6b6b;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --border-color: #e8e5e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--accent-secondary);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-secondary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4c1ec 0%, #e1bb80 100%);
    color: #3d3d3d;
    padding: 100px 20px 80px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeInUp 1s ease;
}

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

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

.hero-photo {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 193, 236, 0.3), rgba(225, 187, 128, 0.3));
    transform: rotate(-3deg);
    z-index: -1;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover::before {
    transform: rotate(-5deg) scale(1.02);
}

.hero-greeting {
    font-size: 1.3rem;
    font-weight: 400;
    color: #3d3d3d;
    margin-bottom: 0.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #3d3d3d;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    opacity: 0.85;
    line-height: 1.8;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Experience Section */
.experience {
    background-color: var(--bg-light);
}

.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 30px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--border-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    left: -9px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-secondary);
    border: 4px solid var(--bg-light);
    box-shadow: 0 0 0 4px var(--accent-secondary);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.job-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.company {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 0.3rem;
}

.location {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.job-duties {
    margin-top: 1.5rem;
}

.job-duties p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.job-duties p:last-child {
    margin-bottom: 0;
}

.job-duties a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: rgba(225, 187, 128, 0.4);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.job-duties a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--accent-secondary);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-secondary);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--bg-light);
}

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

.clip-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.clip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-secondary);
}

.clip-card:hover::before {
    opacity: 1;
}

.clip-image {
    display: none;
}

.clip-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.clip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.clip-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(212, 193, 236, 0.15);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(212, 193, 236, 0.3);
}

.clip-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    white-space: nowrap;
    margin-top: 0.2rem;
}

.clip-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.clip-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
}

.clip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.clip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.clip-link:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

.clip-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.clip-link:hover::after {
    transform: translateX(3px);
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    margin-top: 2.2rem;
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(58, 52, 66, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(212, 193, 236, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(166, 140, 196, 0.35);
    border-color: var(--accent-secondary);
    background: rgba(255, 255, 255, 0.98);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 8px 18px rgba(225, 187, 128, 0.35);
    flex-shrink: 0;
}

.social-link span:last-child {
    white-space: nowrap;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-photo {
        max-width: 300px;
        height: 300px;
    }

    .hero-image-wrapper::before {
        max-width: 300px;
        height: 300px;
    }

    .hero-greeting {
        font-size: 1.1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-link {
        padding: 0.7rem 1.6rem;
    }

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

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .clips-grid {
        grid-template-columns: 1fr;
    }

    .clip-content {
        padding: 1.5rem;
    }

    .clip-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .clip-date {
        margin-top: 0;
    }

    .clip-title {
        font-size: 1.3rem;
    }

    .experience-timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .social-link {
        padding: 0.7rem 1.5rem;
        gap: 0.8rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero-photo {
        max-width: 250px;
        height: 250px;
        border-width: 6px;
    }

    .hero-image-wrapper::before {
        max-width: 250px;
        height: 250px;
    }

    .hero-greeting {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .social-link {
        padding: 0.65rem 1.4rem;
        gap: 0.7rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .clip-content {
        padding: 1.25rem;
    }

    .clip-title {
        font-size: 1.2rem;
    }
}

