/* Base Styles */
:root {
    --yellow: #FFE600;
    --orange: #ff5930;
    --green: #abfa54;
    --black: #000000;
    --pink: #f037a5;
    --text-color: #1A1A1A;
    --background: #000000;
    --sidebar-width: 300px;
    --border-radius: 40px;
    --section-padding: 80px;
    --primary-color: #000000;
    --section-margin: 2rem;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Navigation */
header {
    position: fixed;
    width: calc(100% - 4rem);
    top: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem;
    border-radius: var(--border-radius);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 4rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background: var(--background);
    z-index: 100;
}

.name {
    font-size: 5rem !important;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
    display: block;
    line-height: 1;
}

.title-line {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
    white-space: nowrap;
}

.name:hover,
.title-line:hover {
    color: var(--orange);
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover animations for titles */
.name, .creative-director, .innovation-pioneer, .work h2, .about h2, .contact h2 {
    transition: all 0.3s ease;
    cursor: pointer;
}

.name:hover {
    color: #ff5930;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.creative-director:hover {
    color: #ff5930;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.innovation-pioneer:hover {
    color: #ff5930;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.work h2:hover {
    color: #FFE600;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about h2:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact h2:hover {
    color: #000000;
    transform: translateY(-2px);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
}

/* Sidebar Navigation Links */
.section-links {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.section-links li {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.section-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: all 0.3s ease-in-out;
    position: relative;
    color: black;
    border: 2px solid transparent;
}

.section-links li:nth-child(1) a { background-color: var(--yellow); }
.section-links li:nth-child(2) a { background-color: var(--orange); }
.section-links li:nth-child(3) a { background-color: var(--green); }
.section-links li:nth-child(4) a { background-color: #f134aa; color: white; }
.section-links li:nth-child(5) a { background-color: var(--pink); }

.section-links a::before {
    content: attr(data-number);
    font-weight: 900;
    margin-right: 1rem;
    font-size: 1rem;
    opacity: 0.7;
}

.section-links li.active {
    transform: translateY(-100vh);
}

.section-links li:not(.active) {
    transform: translateY(0);
}

/* Hover states */
.section-links a:hover {
    background-color: white !important;
    border: 2px solid black;
    color: black !important;
    transform: scale(1.05);
}

.section-links li:nth-child(4) a:hover,
.section-links li:last-child a:hover { 
    background-color: #f134aa !important;
    color: white;
}

.section-links li:nth-child(4) a.active,
.section-links li:last-child a.active { 
    background-color: #f134aa !important;
    color: white;
}

.section-links li:nth-child(1) a.active { background-color: var(--yellow); }
.section-links li:nth-child(2) a.active { background-color: var(--orange); }
.section-links li:nth-child(3) a.active { background-color: var(--green); }
.section-links li:nth-child(4) a.active { background-color: #f134aa; color: white; }
.section-links li:nth-child(5) a.active { background-color: var(--pink); }

/* Main Content */
main {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Common section styles */
.section {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    margin: var(--section-margin);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 4rem); /* Account for left and right margins */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Numbers */
.section-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 768px) {
    .section-number {
        display: none;
    }
}

/* Specific section styles */
.intro {
    background-color: var(--background);
}

.work {
    background-color: var(--orange);
}

.about {
    background-color: var(--green);
}

.contact {
    background-color: #f134aa;
    color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: var(--section-margin);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact .section-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.contact h2 {
    font-size: 5vw;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Contact form styles */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-row input {
    flex: 1;
    width: 50%;
}

.contact input,
.contact textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100%;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

/* For Firefox */
.contact input::-moz-placeholder,
.contact textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* For Chrome/Safari/Opera */
.contact input::-webkit-input-placeholder,
.contact textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.9);
}

/* For IE/Edge */
.contact input:-ms-input-placeholder,
.contact textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.contact textarea {
    min-height: 150px;
    resize: vertical;
    width: 100%;
}

.contact button {
    background: white;
    color: #f134aa;
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

.contact button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row input {
        width: 100%;
    }
}

/* Form transitions */
.contact form input,
.contact form textarea {
    transition: all 0.3s ease;
}

.form-status {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.form-status:empty {
    opacity: 0;
}

.form-status.success {
    color: var(--green);
    font-weight: 500;
}

.form-status.error {
    color: var(--orange);
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 2rem;
    }
}

/* Section Colors */
#intro {
    background: var(--yellow);
}

#work {
    background: var(--orange);
}

#about {
    background: var(--green);
}

#contact {
    background: #f134aa;
}

/* Main sections - update to match brighter colors when in view */
.intro.in-view { background-color: var(--yellow); }
.work.in-view { background-color: var(--orange); }
.about.in-view { background-color: var(--green); }
.contact.in-view { background-color: #f134aa; }
footer.in-view { background-color: var(--pink); }

/* Typography */
h1 {
    font-size: 5vw;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

h2 {
    font-size: 4vw;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

p {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 800px;
}

.intro h1, .intro p {
    color: black;
}

/* Intro Section */
.intro {
    background-color: var(--yellow);
    border-radius: var(--border-radius);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 100%;
}

.intro-content h1 {
    font-size: 7vw;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: black;
}

.intro-content p {
    font-size: 2vw;
    font-weight: 400;
    color: black;
    max-width: 800px;
}

/* Work Section */
.work {
    background-color: var(--orange);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.work h2 {
    font-size: 5vw;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: black;
}

.work p {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: black;
}

.work-grid {
    display: none;
}

.work-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.work-info {
    padding: 2rem;
}

.work-info h2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.work-info p {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile and fullscreen styles */
@media (max-width: 768px) {
    .video-container.fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background: #000;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Chrome-specific fixes */
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }

    .video-container.fullscreen iframe {
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: none;
        max-height: none;
        /* Chrome-specific fixes */
        -webkit-transform: translate(-50%, -50%);
        -webkit-transform-origin: center center;
    }
}

/* About Section */
.about {
    background-color: var(--green);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.about h2,
.about h3,
.about p,
.about li,
.about-content {
    color: black;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8rem;
    max-width: 1800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 5vw;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.about-text h2 {
    font-size: 5vw;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.experience {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 8rem;
    max-width: 1800px;
}

.experience-item h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.experience-item p {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Footer */
footer {
    background-color: var(--pink);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-left: calc(var(--sidebar-width) + 2rem);
    margin-right: 2rem;
    margin-bottom: 2rem;
    max-width: 1800px;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
}

footer p {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Links */
.company-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid black;
    padding-bottom: 2px;
}

.company-link:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
    .intro-content h1 {
        font-size: 8vw;
    }
    
    .intro-content p {
        font-size: 3vw;
    }
    
    .work-info h2 {
        font-size: 2rem;
    }
    
    .work-info p {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1.4rem;
    }
    
    .experience-item h3 {
        font-size: 1.6rem;
    }
    
    .experience-item p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 1024px) {
    body {
        padding: 1rem;
    }
    
    header {
        width: calc(100% - 2rem);
        top: 1rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .experience {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact h2 {
        font-size: 7vw;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 40px;
        --border-radius: 30px;
    }
    
    nav ul {
        display: none;
    }
    
    .intro-content h1 {
        font-size: 12vw;
    }
    
    .intro-content p {
        font-size: 5vw;
    }
    
    .experience {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    :root {
        --sidebar-width: 250px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3rem;
    }

    p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .section {
        padding: 2rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 0;
        --section-padding: 1rem;
    }

    body {
        margin: 0;
        padding: 0;
    }

    .sidebar {
        display: none !important;
    }

    nav, .section-links {
        display: none !important;
    }

    main {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .section {
        margin: 0;
        padding: 2rem 1rem;
        min-height: auto;
        border-radius: 0;
    }

    /* Mobile Typography */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 1rem 0;
    }

    .name {
        font-size: 2.5rem !important;
        margin-bottom: 0.2rem;
    }
    
    .title-line {
        font-size: 2.5rem !important;
        line-height: 1;
    }

    h1 span:not(.name) {
        font-size: 2rem;
        display: block;
        margin-top: 1rem;
    }

    .intro h1 {
        font-size: inherit;
    }

    /* Section Headings for Work and About */
    .work h2,
    .about h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
    }

    /* Other section headings */
    h2 {
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    /* Section Numbers */
    .section-number {
        display: none;
    }

    /* Mobile About Section */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 1rem;
    }

    /* Mobile Video Container */
    .video-container {
        margin: 1rem 0;
        padding-bottom: 56.25%;
    }

    /* Mobile Contact Form */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 0.5rem;
    }

    button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 0.5rem;
    }

    /* Mobile Footer */
    footer {
        margin: 0;
        padding: 2rem 1rem;
        border-radius: 0;
    }

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

    .creative-director,
    .innovation-pioneer {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0.1 !important;
        letter-spacing: -0.15em !important;
        word-spacing: -0.4em !important;
        transform: scaleY(0.8) !important;
        display: inline-block !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .name {
        font-size: 2.5rem;
    }

    .content {
        padding: 1rem;
    }
}

.logo {
    display: none;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.contact .section-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* Section headings */
.section h2 {
    font-size: 5vw;
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 2.5rem;
        font-weight: 700; /* Bolder for Work, About, Contact */
    }
    
    .intro h1 {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
        line-height: 1;
    }
    
    .intro p {
        font-size: 1.5rem;
        font-weight: 600; /* Bolder for Creative Director and Innovation Pioneer */
        margin-bottom: 0.2rem;
        line-height: 1;
    }
    
    .intro p:last-child {
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1.1;
        margin-top: 0.3rem;
    }
    
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row input {
        width: 100%;
    }
    
    .section-number {
        display: none;
    }
}

@media (max-width: 768px) {
    .intro {
        line-height: 1;
    }
    
    .intro h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
        line-height: 1;
    }
    
    .title-text {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0.5 !important;
        letter-spacing: -0.12em !important;
        word-spacing: -0.3em !important;
        transform: scaleY(0.85) !important;
        display: block !important;
        white-space: nowrap !important;
    }
    
    .intro p:last-child {
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1.1;
        margin-top: 0.4rem;
        letter-spacing: normal;
        word-spacing: normal;
        transform: none;
    }
    
    .section h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .intro h1 {
        font-size: 2.5rem;
        margin-bottom: 0.1rem;
        line-height: 1;
    }
    
    .intro p {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
        line-height: 0.7;
        letter-spacing: -0.08em;
        word-spacing: -0.2em;
        transform: scaleY(0.9);
    }
    
    .intro p:last-child {
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1.1;
        margin-top: 0.3rem;
        letter-spacing: normal;
        word-spacing: normal;
        transform: none;
    }
    
    .section h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .intro h1 {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
        line-height: 1;
    }
    
    .creative-director,
    .innovation-pioneer {
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.02em;
        margin: 0;
        padding: 0;
        display: inline;
    }
    
    .intro p:last-child {
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1.1;
        margin-top: 0.3rem;
    }
    
    .section h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .intro h1 {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
        line-height: 1;
    }

    .title-line {
        font-size: 2rem !important;
        font-weight: 900 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        letter-spacing: -0.02em !important;
        color: var(--text-color) !important;
    }
    
    .intro p {
        font-size: 1.8rem;
        font-weight: 900;
        line-height: 1.2;
        margin-top: 0.3rem;
        letter-spacing: -0.01em;
    }
    
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 2rem;
    }
}

.name {
    font-size: 5rem !important;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
    display: block;
    line-height: 1;
}

.title-line {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
    white-space: nowrap;
}

.intro p {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0.3rem;
    letter-spacing: -0.01em;
}

/* Mobile styles */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem !important;
        margin-bottom: 0.2rem;
        line-height: 1;
    }
    
    .title-line {
        font-size: 2rem !important;
        line-height: 1;
        white-space: normal;
        margin-bottom: 0.2rem;
    }
    
    .intro p {
        font-size: 1.2rem !important;
        font-weight: 900;
        line-height: 1.2;
        margin-top: 0.2rem;
        letter-spacing: -0.01em;
    }
    
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 1.5rem;
    }
    
    .intro-content {
        padding: 1rem;
    }
}

.section-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.intro {
    background-color: var(--yellow);
    border-radius: var(--border-radius);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Mobile styles */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem !important;
        margin-bottom: 0.2rem;
        line-height: 1;
    }
    
    .title-line {
        font-size: 2rem !important;
        line-height: 1;
        white-space: normal;
        margin-bottom: 0.2rem;
    }
    
    .intro p {
        font-size: 1.2rem !important;
        font-weight: 900;
        line-height: 1.2;
        margin-top: 0.2rem;
        letter-spacing: -0.01em;
    }
    
    .section {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .intro {
        min-height: auto;
        height: auto;
        padding: 3rem 1.5rem;
    }
    
    .intro-content {
        padding: 1rem;
    }
    
    .work, .about, .contact {
        min-height: auto;
        height: auto;
        padding: 3rem 1.5rem;
    }
}
