/* Font Face Definitions */
@font-face {
    font-family: 'Delight';
    src: url('fonts/Web-TT/Delight-Bold.woff2') format('woff2'),
         url('fonts/Web-TT/Delight-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Delight';
    src: url('fonts/Web-TT/Delight-Regular.woff2') format('woff2'),
         url('fonts/Web-TT/Delight-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: 'Delight', sans-serif;
}

/* Header */
header {
    background-color: rgba(254, 253, 244, 0.9);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ff6b6b;
}

nav a.active {
    color: #333;
    font-weight: 550;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6b6b;
}

/* Home Section */
#home {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    padding-top: 9rem;
    padding-bottom: 3rem;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.friska-text {
    font-family: 'Delight', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: #FF4444;
    position: absolute;
    top: -10%;
    left: 30%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
    transition: font-size 0.3s ease;
    cursor: pointer;
}

.friska-text:hover {
    font-size: clamp(2.4rem, 7vw, 5.5rem);
}

.port-text {
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    color: #FF4444;
    position: absolute;
    top: 58%;
    left: 68.3%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
    transition: font-size 0.3s ease;
    cursor: pointer;
}

.port-text:hover {
    font-size: clamp(2rem, 6vw, 4.5rem);
}

.folio-text {
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
    color: #FF4444;
    position: absolute;
    top: 74%;
    left: 75%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
    transition: font-size 0.3s ease;
    cursor: pointer;
}

.folio-text:hover {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.character-container {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.cover-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.pupil-left {
    position: absolute;
    top: 33%;
    left: 37%;
    width: 2%;
    height: auto;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.pupil-right {
    position: absolute;
    top: 33.3%;
    right: 46%;
    width: 2.2%;
    height: auto;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.bingkai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
}

/* Hero Text Container - Inside Home Section */
.hero-text-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-text {
    font-family: 'Delight', sans-serif;
    font-weight: 200;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.changing-word-container {
    position: relative;
    display: inline-block;
    min-width: 280px;
    height: auto;
    vertical-align: top;
    text-align: left;
}

.changing-word {
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    font-weight: 300;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    white-space: nowrap;
    line-height: 1;
}

.changing-word.active {
    opacity: 1;
    transform: translateY(0);
}

.changing-word.exit {
    opacity: 0;
    transform: translateY(-20px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text-container {
        bottom: 1.5rem;
    }
    
    .changing-word-container {
        min-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-text-container {
        bottom: 1rem;
    }
    
    .changing-word-container {
        min-width: 180px;
    }
}

/* About Section */
#about {
    background-color: #000000;
    padding: 9rem 2rem 5rem;
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-container img {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin-bottom: 0.5rem;
    transition: all 0.6s ease;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-container img:hover {
    transform: scale(1.05);
}

.about-container img.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-container img.fade-out {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.about-text {
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    color: #FFFFFF;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.about-text .bold {
    font-weight: 600;
}

/* About Section Responsive */
@media (max-width: 768px) {
    #about {
        padding: 5rem 1.5rem 4rem;
    }
    
    .about-container img {
        max-width: 500px;
        margin-bottom: 1rem;
    }
    
    .about-text {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-container img {
        max-width: 450px;
        margin-bottom: 0.5rem;
    }
    
    .about-text {
        padding: 0 0.5rem;
    }
}

/* AOS Override - Ensure animation works */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition-property: opacity, transform;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Tools Section */
.tools-section {
    margin-top: 4rem;
    text-align: center;
}

.tools-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

.tool-item {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-item:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Responsive Tools */
@media (max-width: 768px) {
    .tools-section {
        margin-top: 3rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .tool-item {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 300px;
    }
    
    .tool-item {
        width: 40px;
        height: 40px;
    }
}
/* Experience Section */
#experience {
    background-color: #FEFDF4;
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.experience-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 4rem;
}

.experience-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.experience-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    overflow: visible;
    transition: all 0.6s ease-in-out;
}

.experience-cards-container:active {
    cursor: grabbing;
}

.experience-card {
    transition: all 0.6s ease-in-out;
    pointer-events: none;
    overflow: visible;
}

.experience-card.transitioning {
    opacity: 0;
}

.exp-card-left.transitioning,
.exp-card-right.transitioning {
    transform: scale(0.85);
}

.exp-card-center.transitioning {
    transform: scale(0.95);
}

.experience-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all 0.6s ease-in-out;
}

.exp-card-left,
.exp-card-right {
    width: 280px;
    opacity: 0.75;
    transform: scale(0.9);
}

.exp-card-center {
    width: 400px;
    z-index: 10;
    transform: scale(1);
}

.exp-card-left:hover,
.exp-card-right:hover {
    transform: scale(0.95) translateY(-10px);
}

.exp-card-center:hover {
    transform: scale(1.05) translateY(-10px);
}

.carousel-btn {
    background-color: #CC2222;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: #FFFFFF;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #AA1111;
    transform: scale(1.15);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive Experience */
@media (max-width: 1024px) {
    .experience-cards-container {
        gap: 1.5rem;
    }
    
    .exp-card-left,
    .exp-card-right {
        width: 220px;
    }
    
    .exp-card-center {
        width: 320px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    #experience {
        padding: 4rem 1.5rem;
    }
    
    .experience-title {
        margin-bottom: 3rem;
    }
    
    .experience-carousel-wrapper {
        gap: 1rem;
    }
    
    .experience-cards-container {
        gap: 1rem;
    }
    
    .exp-card-left,
    .exp-card-right {
        width: 150px;
    }
    
    .exp-card-center {
        width: 220px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    #experience {
        padding: 3rem 1rem;
    }
    
    .experience-carousel-wrapper {
        gap: 0.5rem;
    }
    
    .experience-cards-container {
        gap: 0.5rem;
    }
    
    .exp-card-left,
    .exp-card-right {
        width: 100px;
    }
    
    .exp-card-center {
        width: 160px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* My Project Section */
#project {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 7rem 3rem 5rem;
}

.project-title-wrapper {
    position: relative;
    margin-bottom: 0rem;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.project-title {
    font-family: 'Delight', sans-serif;
    color: #FF4444;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
    line-height: 1.1;
    padding: 1rem 2rem;
}

.project-line1 {
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.project-line2 {
    font-weight: 650;
    font-size: clamp(3.5rem, 7vw, 5rem);
}

/* Project Layout Container */
.project-layout-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    max-width: 1400px;
    position: relative;
    margin-top: -6rem;
}

.project-side {
    position: relative;
    width: 450px;
    height: 600px;
    flex-shrink: 0;
}

.project-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 0.5rem;
}

.folder-center-image {
    width: 250px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.folder-center-image:hover {
    transform: scale(1.1);
}

.click-here-text {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #FF4444;
    margin: 0;
    text-align: center;
    cursor: pointer;
}

/* Project Card Collage */
.project-card-collage {
    position: absolute;
    width: 130px;
    height: 165px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
    cursor: pointer;
    transition: transform 0.25s ease-out, filter 0.25s ease-out, z-index 0s;
}

.project-card-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-layout-container.show-projects .project-card-collage:hover {
    transform: scale(1.05) var(--card-rotation) !important;
    z-index: 100 !important;
    filter: brightness(1.05);
}

/* Pop animation - scale bounce with opacity */
@keyframes popBounce {
    0% {
        opacity: 0;
        transform: scale(0) var(--card-rotation);
    }
    1% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: scale(1.1) var(--card-rotation);
    }
    100% {
        opacity: 1;
        transform: scale(1) var(--card-rotation);
    }
}

/* Pop out animation - reverse */
@keyframes popOut {
    0% {
        opacity: 1;
        transform: scale(1) var(--card-rotation);
    }
    100% {
        opacity: 0;
        transform: scale(0) var(--card-rotation);
    }
}

/* Show projects when folder is clicked */
.project-layout-container.show-projects .project-card-collage {
    animation: popBounce 0.4s ease-out forwards;
}

/* Staggered delay */
.project-layout-container.show-projects .card-left-1 {
    animation-delay: 0.05s;
}

.project-layout-container.show-projects .card-left-2 {
    animation-delay: 0.1s;
}

.project-layout-container.show-projects .card-left-3 {
    animation-delay: 0.15s;
}

.project-layout-container.show-projects .card-left-4 {
    animation-delay: 0.2s;
}

.project-layout-container.show-projects .card-left-5 {
    animation-delay: 0.25s;
}

.project-layout-container.show-projects .card-left-6 {
    animation-delay: 0.3s;
}

.project-layout-container.show-projects .card-right-1 {
    animation-delay: 0.35s;
}

.project-layout-container.show-projects .card-right-2 {
    animation-delay: 0.4s;
}

.project-layout-container.show-projects .card-right-3 {
    animation-delay: 0.45s;
}

.project-layout-container.show-projects .card-right-4 {
    animation-delay: 0.5s;
}

.project-layout-container.show-projects .card-right-5 {
    animation-delay: 0.55s;
}

.project-layout-container.show-projects .card-right-6 {
    animation-delay: 0.6s;
}



/* Left Side Positions - Organic Layout */
.card-left-1 {
    top: -30px;
    left: 5px;
    --card-rotation: rotate(-5deg);
    transform: var(--card-rotation);
    z-index: 6;
}

.card-left-2 {
    top: -30px;
    left: 220px;
    --card-rotation: rotate(8deg);
    transform: var(--card-rotation);
    z-index: 5;
}

.card-left-3 {
    top: 170px;
    left: 15px;
    --card-rotation: rotate(-2deg);
    transform: var(--card-rotation);
    z-index: 4;
}

.card-left-4 {
    top: 170px;
    left: 230px;
    --card-rotation: rotate(11deg);
    transform: var(--card-rotation);
    z-index: 3;
}

.card-left-5 {
    top: 370px;
    left: 25px;
    --card-rotation: rotate(-9deg);
    transform: var(--card-rotation);
    z-index: 2;
}

.card-left-6 {
    top: 370px;
    left: 240px;
    --card-rotation: rotate(4deg);
    transform: var(--card-rotation);
    z-index: 1;
}

/* Right Side Positions - Organic Layout */
.card-right-1 {
    top: -30px;
    right: 5px;
    --card-rotation: rotate(7deg);
    transform: var(--card-rotation);
    z-index: 6;
}

.card-right-2 {
    top: -30px;
    right: 220px;
    --card-rotation: rotate(-8deg);
    transform: var(--card-rotation);
    z-index: 5;
}

.card-right-3 {
    top: 170px;
    right: 15px;
    --card-rotation: rotate(3deg);
    transform: var(--card-rotation);
    z-index: 4;
}

.card-right-4 {
    top: 170px;
    right: 230px;
    --card-rotation: rotate(-11deg);
    transform: var(--card-rotation);
    z-index: 3;
}

.card-right-5 {
    top: 370px;
    right: 25px;
    --card-rotation: rotate(10deg);
    transform: var(--card-rotation);
    z-index: 2;
}

.card-right-6 {
    top: 370px;
    right: 240px;
    --card-rotation: rotate(-6deg);
    transform: var(--card-rotation);
    z-index: 1;
}

/* Animation Delays */
.files-container.show .file-1 {
    animation-delay: 0.1s;
}

.files-container.show .file-2 {
    animation-delay: 0.15s;
}

.files-container.show .file-3 {
    animation-delay: 0.2s;
}

.files-container.show .file-4 {
    animation-delay: 0.25s;
}

.files-container.show .file-5 {
    animation-delay: 0.3s;
}

.files-container.show .file-6 {
    animation-delay: 0.35s;
}

.files-container.show .file-7 {
    animation-delay: 0.4s;
}

.files-container.show .file-8 {
    animation-delay: 0.45s;
}

.files-container.show .file-9 {
    animation-delay: 0.5s;
}

.files-container.show .file-10 {
    animation-delay: 0.55s;
}

.files-container.show .file-11 {
    animation-delay: 0.6s;
}

.files-container.show .file-12 {
    animation-delay: 0.65s;
}

.files-container.show .file-13 {
    animation-delay: 0.7s;
}

.files-container.show .file-14 {
    animation-delay: 0.75s;
}

/* Responsive Project Layout */
@media (max-width: 1024px) {
    .project-layout-container {
        gap: 2rem;
    }

    .project-side {
        width: 260px;
        height: 480px;
    }

    .folder-center-image {
        width: 180px;
    }

    .project-card-collage {
        width: 90px;
        height: 115px;
    }

    .card-left-1 {
        top: 20px;
        left: 12px;
    }

    .card-left-2 {
        top: 40px;
        left: 135px;
    }

    .card-left-3 {
        top: 155px;
        left: 28px;
    }

    .card-left-4 {
        top: 190px;
        left: 145px;
    }

    .card-left-5 {
        top: 310px;
        left: 15px;
    }

    .card-left-6 {
        top: 345px;
        left: 138px;
    }

    .card-right-1 {
        right: 15px;
        left: auto;
    }

    .card-right-2 {
        right: 138px;
        left: auto;
    }

    .card-right-3 {
        right: 25px;
        left: auto;
    }

    .card-right-4 {
        right: 148px;
        left: auto;
    }

    .card-right-5 {
        right: 18px;
        left: auto;
    }

    .card-right-6 {
        right: 140px;
        left: auto;
    }
}

@media (max-width: 768px) {
    #project {
        padding: 4rem 1.5rem;
    }

    .project-title-wrapper {
        margin-bottom: 2rem;
    }

    .project-layout-container {
        flex-direction: column;
        gap: 3rem;
    }

    .project-side {
        width: 100%;
        max-width: 350px;
        height: 320px;
    }

    .folder-center-image {
        width: 140px;
    }

    .project-card-collage {
        width: 75px;
        height: 100px;
    }

    /* Organic positions for stacked layout */
    .card-left-1, .card-right-1 {
        top: 15px;
        left: 12px;
    }

    .card-left-2, .card-right-2 {
        top: 30px;
        left: 105px;
    }

    .card-left-3, .card-right-3 {
        top: 135px;
        left: 18px;
    }

    .card-left-4, .card-right-4 {
        top: 155px;
        left: 110px;
    }

    .card-left-5, .card-right-5 {
        top: 245px;
        left: 15px;
    }

    .card-left-6, .card-right-6 {
        top: 265px;
        left: 108px;
    }
}

@media (max-width: 480px) {
    #project {
        padding: 3rem 1rem;
    }

    .project-side {
        max-width: 240px;
        height: 270px;
    }

    .folder-center-image {
        width: 110px;
    }

    .project-card-collage {
        width: 60px;
        height: 80px;
    }

    .card-left-1, .card-right-1 {
        top: 12px;
        left: 10px;
    }

    .card-left-2, .card-right-2 {
        top: 25px;
        left: 85px;
    }

    .card-left-3, .card-right-3 {
        top: 110px;
        left: 15px;
    }

    .card-left-4, .card-right-4 {
        top: 125px;
        left: 88px;
    }

    .card-left-5, .card-right-5 {
        top: 205px;
        left: 12px;
    }

    .card-left-6, .card-right-6 {
        top: 220px;
        left: 86px;
    }
}

/* Typography Section */
#typography {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
}

.typography-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
}

.typography-content-wrapper {
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    align-items: flex-start;
}

.typography-slider-wrapper {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background-color: #FF4444;
    padding: 2rem;
    border-radius: 20px;
}

.slider-btn {
    background-color: #000000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #FFFFFF;
}

.slider-btn:hover {
    background-color: #FFFFFF;
    color: #FF4444;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.typography-slider {
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.typography-slider::-webkit-scrollbar {
    display: none;
}

.typography-grid {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
}

.typography-card {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    background-color: #000000;
}

.typography-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.typography-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.typography-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.typography-project-title {
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.typography-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    max-width: 600px;
}

/* Responsive Typography */
@media (max-width: 1024px) {
    .typography-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .typography-slider-wrapper {
        max-width: 100%;
    }

    .typography-text-content {
        padding: 1rem 0;
        text-align: center;
    }

    .typography-project-title,
    .typography-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    #typography {
        padding: 4rem 1.5rem;
    }

    .typography-title {
        margin-bottom: 2rem;
    }

    .typography-slider-wrapper {
        padding: 1.5rem;
    }

    .typography-card {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    #typography {
        padding: 3rem 1rem;
    }

    .typography-slider-wrapper {
        padding: 1rem;
        gap: 0.5rem;
    }

    .typography-card {
        width: 200px;
        height: 200px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* Sribuu Section */
#sribuu {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.sribuu-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.sribuu-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.sribuu-text-left {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sribuu-subtitle {
    font-family: 'Delight', sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #FF4444;
    margin: 0;
    line-height: 1.4;
}

.sribuu-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #333333;
    margin: 0;
    line-height: 1.8;
}

.sribuu-image-right {
    flex: 1;
    background-color: #000000;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
}

.sribuu-image-right img {
    width: 85%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive Sribuu */
@media (max-width: 1024px) {
    .sribuu-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .sribuu-text-left {
        max-width: 100%;
        text-align: center;
    }

    .sribuu-image-right {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    #sribuu {
        padding: 4rem 1.5rem;
    }

    .sribuu-title {
        margin-bottom: 2rem;
    }

    .sribuu-image-right {
        max-width: 350px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #sribuu {
        padding: 3rem 1rem;
    }

    .sribuu-image-right {
        max-width: 100%;
        padding: 1rem;
    }
}

/* Elmo Section */
#elmo {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.elmo-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.elmo-slider-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.elmo-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem;
    background-color: #FF4444;
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: #000000 #FF4444;
}

.elmo-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.elmo-scroll-container::-webkit-scrollbar-track {
    background: #FF4444;
    border-radius: 10px;
}

.elmo-scroll-container::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 10px;
}

.elmo-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.elmo-app-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.elmo-app-icon:hover {
    transform: scale(1.1);
}

.elmo-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #FFFFFF;
    margin: 2rem 0 0 0;
    line-height: 1.8;
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

/* Responsive Elmo */
@media (max-width: 768px) {
    #elmo {
        padding: 4rem 1.5rem;
    }

    .elmo-title {
        margin-bottom: 2rem;
    }

    .elmo-slider-container {
        flex-direction: column;
        gap: 1rem;
    }

    .elmo-scroll-container {
        padding: 1.5rem;
    }

    .elmo-app-icon {
        width: 120px;
        height: 120px;
    }

    .elmo-description {
        padding: 0 1rem;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    #elmo {
        padding: 3rem 1rem;
    }

    .elmo-scroll-container {
        padding: 1rem;
    }

    .elmo-app-icon {
        width: 100px;
        height: 100px;
    }
}

/* Green Shoppers Section */
#greenshoppers {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.greenshoppers-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.greenshoppers-title .title-line1,
.greenshoppers-title .title-line2 {
    display: block;
}

.greenshoppers-media-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.greenshoppers-thumbnail,
.greenshoppers-video {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.greenshoppers-thumbnail {
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 1;
}

.greenshoppers-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: auto;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    margin-left: 4px;
}

.video-play-btn:hover {
    background-color: #FF4444;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

.greenshoppers-media-container:hover .video-play-btn.playing {
    opacity: 0.7;
    pointer-events: auto;
}

.greenshoppers-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #333333;
    margin: 2rem 0 0 0;
    line-height: 1.8;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.greenshoppers-link {
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FF4444;
    text-decoration: none;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    border: 2px solid #FF4444;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.greenshoppers-link:hover {
    background-color: #FF4444;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Responsive Green Shoppers */
@media (max-width: 1024px) {
    .greenshoppers-media-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    #greenshoppers {
        padding: 4rem 1.5rem;
    }

    .greenshoppers-title {
        margin-bottom: 2rem;
    }

    .greenshoppers-media-container {
        max-width: 500px;
    }

    .greenshoppers-description {
        padding: 0 1rem;
    }

    .greenshoppers-link {
        padding: 0.7rem 1.5rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    #greenshoppers {
        padding: 3rem 1rem;
    }

    .greenshoppers-media-container {
        max-width: 100%;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn svg {
        width: 25px;
        height: 25px;
    }
}

/* MRT DASH Section */
#mrtdash {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.mrtdash-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.mrtdash-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mrtdash-image-left {
    width: 90%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mrtdash-image-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.mrtdash-image-left img:hover {
    transform: scale(1.05);
}

.mrtdash-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #FFFFFF;
    margin: 2rem 0 0 0;
    line-height: 1.8;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.mrtdash-link {
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FF4444;
    text-decoration: none;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    border: 2px solid #FF4444;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.mrtdash-link:hover {
    background-color: #FF4444;
    color: #000000;
    transform: translateY(-3px);
}

/* Responsive MRT DASH */
@media (max-width: 1024px) {
    .mrtdash-image-left {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    #mrtdash {
        padding: 4rem 1.5rem;
    }

    .mrtdash-title {
        margin-bottom: 2rem;
    }

    .mrtdash-image-left {
        width: 100%;
        max-width: 500px;
    }

    .mrtdash-description {
        padding: 0 1rem;
    }

    .mrtdash-link {
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    #mrtdash {
        padding: 3rem 1rem;
    }

    .mrtdash-image-left {
        max-width: 100%;
    }
}

/* Oma's Kitchen Section */
#omaskitchen {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.omaskitchen-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.omaskitchen-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.omaskitchen-gif-left {
    flex: 1;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    padding: 2rem;
    border-radius: 20px;
}

.omaskitchen-gif-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.omaskitchen-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.omaskitchen-subtitle {
    font-family: 'Delight', sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #FF4444;
    margin: 0;
    line-height: 1.4;
}

.omaskitchen-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #333333;
    margin: 0;
    line-height: 1.8;
}

/* Responsive Oma's Kitchen */
@media (max-width: 1024px) {
    .omaskitchen-content {
        flex-direction: column;
        gap: 2rem;
    }

    .omaskitchen-gif-left {
        max-width: 400px;
    }

    .omaskitchen-text-right {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #omaskitchen {
        padding: 4rem 1.5rem;
    }

    .omaskitchen-title {
        margin-bottom: 2rem;
    }

    .omaskitchen-gif-left {
        max-width: 300px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #omaskitchen {
        padding: 3rem 1rem;
    }

    .omaskitchen-gif-left {
        max-width: 100%;
        padding: 1rem;
    }
}

/* Dozed & Confused Section */
#dozedconfused {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.dozedconfused-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.dozedconfused-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.dozedconfused-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.dozedconfused-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.dozedconfused-image-container img:hover {
    transform: scale(1.05);
}

.dozedconfused-text-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dozedconfused-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #FFFFFF;
    margin: 0;
    line-height: 1.8;
    max-width: 600px;
}

/* Responsive Dozed & Confused */
@media (max-width: 1024px) {
    .dozedconfused-content {
        flex-direction: column;
        gap: 2rem;
    }

    .dozedconfused-image-container {
        max-width: 350px;
    }

    .dozedconfused-text-right {
        text-align: center;
        align-items: center;
    }

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

@media (max-width: 768px) {
    #dozedconfused {
        padding: 4rem 1.5rem;
    }

    .dozedconfused-title {
        margin-bottom: 2rem;
    }

    .dozedconfused-image-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    #dozedconfused {
        padding: 3rem 1rem;
    }

    .dozedconfused-image-container {
        max-width: 100%;
    }
}

/* Sabrina Carpenter Section */
#sabrina {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.sabrina-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.sabrina-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.sabrina-image-container {
    flex: 1;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sabrina-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.sabrina-image-container img:hover {
    transform: scale(1.05);
}

.sabrina-text-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sabrina-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #333333;
    margin: 0;
    line-height: 1.8;
    max-width: 600px;
}

/* Responsive Sabrina */
@media (max-width: 1024px) {
    .sabrina-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sabrina-image-container {
        max-width: 600px;
    }

    .sabrina-text-right {
        text-align: center;
        align-items: center;
    }

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

@media (max-width: 768px) {
    #sabrina {
        padding: 4rem 1.5rem;
    }

    .sabrina-title {
        margin-bottom: 2rem;
    }

    .sabrina-image-container {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    #sabrina {
        padding: 3rem 1rem;
    }

    .sabrina-image-container {
        max-width: 100%;
    }
}

/* Digital Imaging Section */
#digitalimaging {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.digitalimaging-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.digitalimaging-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.digitalimaging-image-container {
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.digitalimaging-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.digitalimaging-image-container img:hover {
    transform: scale(1.05);
}

.digitalimaging-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FFFFFF;
    margin: 0;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
}

/* Responsive Digital Imaging */
@media (max-width: 768px) {
    #digitalimaging {
        padding: 4rem 1.5rem;
    }

    .digitalimaging-title {
        margin-bottom: 2rem;
    }

    .digitalimaging-content {
        gap: 2rem;
    }

    .digitalimaging-image-container {
        max-width: 600px;
    }

    .digitalimaging-description {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    #digitalimaging {
        padding: 3rem 1rem;
    }

    .digitalimaging-image-container {
        max-width: 100%;
    }
}

/* Laundry Section */
#laundry {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.laundry-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.laundry-slider-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.laundry-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem;
    background-color: #FF4444;
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: #000000 #FF4444;
}

.laundry-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.laundry-scroll-container::-webkit-scrollbar-track {
    background: #FF4444;
    border-radius: 10px;
}

.laundry-scroll-container::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 10px;
}

.laundry-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.laundry-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
}

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

.laundry-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #333333;
    margin: 2rem 0 0 0;
    line-height: 1.8;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

/* Responsive Laundry */
@media (max-width: 768px) {
    #laundry {
        padding: 4rem 1.5rem;
    }

    .laundry-title {
        margin-bottom: 2rem;
    }

    .laundry-slider-container {
        flex-direction: column;
        gap: 1rem;
    }

    .laundry-scroll-container {
        padding: 1.5rem;
    }

    .laundry-image {
        width: 250px;
        height: 250px;
    }

    .laundry-description {
        padding: 0 1rem;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    #laundry {
        padding: 3rem 1rem;
    }

    .laundry-scroll-container {
        padding: 1rem;
    }

    .laundry-image {
        width: 200px;
        height: 200px;
    }
}

/* Poster Section */
#poster {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.poster-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.poster-slider-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.poster-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem;
    background-color: #FF4444;
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: #000000 #FF4444;
}

.poster-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.poster-scroll-container::-webkit-scrollbar-track {
    background: #FF4444;
    border-radius: 10px;
}

.poster-scroll-container::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 10px;
}

.poster-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.poster-image {
    height: 400px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
}

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

.poster-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FFFFFF;
    margin: 2rem 0 0 0;
    line-height: 1.8;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

/* Responsive Poster */
@media (max-width: 768px) {
    #poster {
        padding: 4rem 1.5rem;
    }

    .poster-title {
        margin-bottom: 2rem;
    }

    .poster-slider-container {
        flex-direction: column;
        gap: 1rem;
    }

    .poster-scroll-container {
        padding: 1.5rem;
    }

    .poster-image {
        height: 300px;
    }

    .poster-description {
        padding: 0 1rem;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    #poster {
        padding: 3rem 1rem;
    }

    .poster-scroll-container {
        padding: 1rem;
    }

    .poster-image {
        height: 250px;
    }
}

/* Musicapedia Section */
#musicapedia {
    background-color: #FEFDF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    scroll-margin-top: 100px;
}

.musicapedia-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.musicapedia-slider-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.musicapedia-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem;
    background-color: #FF4444;
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: #000000 #FF4444;
}

.musicapedia-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.musicapedia-scroll-container::-webkit-scrollbar-track {
    background: #FF4444;
    border-radius: 10px;
}

.musicapedia-scroll-container::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 10px;
}

.musicapedia-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.musicapedia-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
}

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

.musicapedia-description {
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #333333;
    margin: 2rem 0 0 0;
    line-height: 1.8;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

/* Responsive Musicapedia */
@media (max-width: 768px) {
    #musicapedia {
        padding: 4rem 1.5rem;
    }

    .musicapedia-title {
        margin-bottom: 2rem;
    }

    .musicapedia-slider-container {
        flex-direction: column;
        gap: 1rem;
    }

    .musicapedia-scroll-container {
        padding: 1.5rem;
    }

    .musicapedia-image {
        width: 250px;
        height: 250px;
    }

    .musicapedia-description {
        padding: 0 1rem;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    #musicapedia {
        padding: 3rem 1rem;
    }

    .musicapedia-scroll-container {
        padding: 1rem;
    }

    .musicapedia-image {
        width: 200px;
        height: 200px;
    }
}

/* Contact Section */
#contact {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
}

.contact-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: 'Delight', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FF4444;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-family: 'Delight', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Delight', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #FF4444;
    border-radius: 10px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    font-family: 'Delight', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 3rem;
    background-color: #FF4444;
    color: #000000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.submit-btn:hover {
    background-color: #FFFFFF;
    transform: translateY(-3px);
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.contact-item {
    color: #FF4444;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item:hover {
    color: #FFFFFF;
    transform: scale(1.2);
}

.contact-item svg {
    width: 40px;
    height: 40px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    #contact {
        padding: 4rem 1.5rem;
    }

    .contact-content {
        max-width: 600px;
    }

    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #contact {
        padding: 3rem 1rem;
    }

    .contact-links {
        gap: 1.5rem;
    }

    .contact-item svg {
        width: 35px;
        height: 35px;
    }
}
