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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Color Variables - Matching Canva Design */
:root {
    --lavender: #bea1f7;
    --yellow: #fdfccb;
    --dark-purple: #401804;
    --light-yellow: #fdfccb;
    --white: #FFFFFF;
}

/* Header Styles */
.header {
    background-color: var(--lavender);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: none;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-link {
    background-color: #5d17ea;
    color: #fce08b;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
    border-radius: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    background-color: var(--light-yellow);
    color: var(--dark-purple);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-color: #bea1f7;
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
}

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

.hero-name {
    font-size: 11rem;
    font-weight: 900;
    color: #fdfccb;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.hero-titles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title {
    font-size: 2rem;
    font-weight: 400;
    color: #401804;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

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

.portrait {
    width: 450px;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.desktop-text {
    display: inline;
}

.mobile-break {
    display: none;
}

/* About Section */
.about {
    background-color: #fdfccb;
}

.about .section-title {
    color: #5d17ea;
    font-size: 5.8rem;
    font-weight: 900;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-img {
    width: 100%;
    max-width: 307px;
    height: 555px;
    object-fit: cover;
    border-radius: 0;
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.375;
    color: #401804;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #401804;
}

/* Projects Section */
.projects {
    background-color: #bea1f7;
}

.projects .section-title {
    color: #fdfccb;
    font-size: 4.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.projects-content {
    max-width: 1200px;
    margin: 0 auto;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-item {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #401804;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.project-description {
    color: #401804;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 400;
}

.project-details {
    color: #401804;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Facilitation Section */
.facilitation {
    background-color: #fdfccb;
}

.facilitation .section-title {
    color: #5d17ea;
    font-size: 4.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.facilitation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workshop-item {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.workshop-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #401804;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.workshop-description {
    color: #401804;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 400;
}

.workshop-details {
    color: #401804;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Writing Section */
.writing {
    background-color: #bea1f7;
}

.writing .section-title {
    color: #fdfccb;
    font-size: 5.9rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.writing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.writing-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.writing-item {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.writing-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #401804;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.writing-description {
    color: #401804;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 400;
}

.writing-note {
    color: #401804;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Upcoming Events Section */
.upcoming {
    background-color: #fdfccb;
}

.upcoming .section-title {
    color: #5d17ea;
    font-size: 5.9rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.upcoming-content {
    max-width: 1200px;
    margin: 0 auto;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #401804;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-description {
    color: #401804;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 400;
}

.event-note {
    color: #401804;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Contact Section */
.contact {
    background-color: #bea1f7;
}

.contact .section-title {
    color: #fdfccb;
    font-size: 5.9rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.contact-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: #401804;
    margin-bottom: 0.5rem;
}

.email-link {
    color: #401804;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #401804;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.contact-img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    
    .header {
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav {
        gap: 0.2rem;
        padding: 0 0.3rem;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .nav-link {
        font-size: 0.4rem;
        padding: 0.1rem 0.2rem;
        flex: 1;
        min-width: calc(50% - 0.1rem);
        text-align: center;
        word-break: break-word;
        line-height: 0.8;
        white-space: normal;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0.5rem;
        min-height: 60vh;
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero-name {
        font-size: 4rem;
        line-height: 0.9;
        margin-bottom: 1rem;
    }
    
    .title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .portrait {
        width: 250px;
        height: 350px;
        max-width: 100%;
    }
    
    section {
        padding: 2rem 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .about-text {
        order: 2;
        width: 100%;
    }
    
    .about-image {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .about-img {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .contact-details {
        order: 2;
        width: 100%;
    }
    
    .contact-image {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .contact-img {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 0.9;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .projects .section-title {
        font-size: 3.45rem;
    }
    
    .upcoming .section-title {
        font-size: 4.725rem;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .project-title,
    .workshop-title,
    .writing-title,
    .event-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .project-description,
    .workshop-description,
    .writing-description,
    .event-description {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .about-text {
        font-size: 1.1rem;
        line-height: 1.375;
    }
    
    .email-link,
    .social-link {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-links img {
        height: 2.5em !important;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 0.2rem;
        padding: 0 0.3rem;
    }
    
    .nav-link {
        font-size: 0.6rem;
        padding: 0.3rem 0.4rem;
    }
    
    .hero {
        padding: 1.5rem 0.5rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .title {
        font-size: 1rem;
    }
    
    .portrait {
        width: 200px;
        height: 280px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .project-title,
    .workshop-title,
    .writing-title,
    .event-title {
        font-size: 1.1rem;
    }
    
    .project-description,
    .workshop-description,
    .writing-description,
    .event-description {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .social-links img {
        height: 2em !important;
    }
    
    .about-img,
    .contact-img {
        height: 250px;
    }
}
