body {
    margin: 0;
    padding: 0;
    background: #fdf7f2;
    font-family: 'Nunito', sans-serif;
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #fffdf9;
    border-right: 2px solid #ffe0ec;
    padding: 30px 20px;
    box-shadow: 4px 0 10px rgba(255,182,217,0.2);
}

.sidebar .logo {
    font-family: 'Kalam', cursive;
    font-size: 2rem;
    color: #b77;
    margin-bottom: 20px;
}

.sidebar a {
    display: block;
    margin: 12px 0;
    text-decoration: none;
    color: #b77;
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    transition: 0.2s ease;
}

.sidebar a:hover {
    color: #ff8fc4;
    transform: translateX(4px);
}

/* MAIN CONTENT */
.portfolio-wrapper {
    margin-left: 260px;
    width: calc(100% - 260px);
    padding: 40px;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-title {
    font-family: 'Kalam', cursive;
    font-size: 3rem;
    color: #b77;
}

.portfolio-subtitle {
    color: #a88;
    font-size: 1.2rem;
}

/* SECTION TITLES */
.section-title {
    font-family: 'Kalam', cursive;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #b77;
}

.section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 6px;
    background: #ffd6e8;
    border-radius: 4px;
    margin-top: 6px;
}

/* HORIZONTAL SCROLL */
.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.scroll-row img,
.scroll-row video {
    height: 260px;
    border-radius: 14px;
    object-fit: cover;
    scroll-snap-align: start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.2s ease;
}

.scroll-row img:hover,
.scroll-row video:hover {
    transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        gap: 20px;
        justify-content: center;
        border-right: none;
        border-bottom: 2px solid #ffe0ec;
    }

    .portfolio-wrapper {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
}