@charset "UTF-8";

/* =========================================
   Theme: Playful Pop (New Grad Creations)
   ========================================= */

:root {
    --pop-bg: #fffbf0;
    /* Creamy white */
    --pop-text: #2d2d2d;

    --c-yellow: #ffd93d;
    --c-pink: #ff6b6b;
    --c-blue: #4d96ff;
    --c-green: #6bcb77;

    --font-en: "Outfit", sans-serif;
    --font-jp: "Zen Maru Gothic", sans-serif;

    --radius-l: 32px;
    --radius-m: 24px;
}

/* Reset base.css overlay if present */
body::before,
body::after {
    display: none !important;
}

body {
    background-color: #ffffff;
    /* Pure White */
    color: var(--pop-text);
    font-family: var(--font-jp);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- Floating Header --- */
.pop-header {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    padding: 0 48px;
    /* Increased padding */
    box-sizing: border-box;
    /* Prevent overflow */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pop-header-left {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.pop-logo {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--pop-text);
}

.pop-tagline {
    font-size: 14px;
    font-weight: 700;
    background: var(--pop-text);
    color: #fff;
    padding: 4px 12px;
    border-radius: 99px;
    transform: rotate(-2deg);
}

/* Navigation */
.pop-nav__list {
    display: flex;
    gap: 8px;
    /* Reduced gap */
    list-style: none;
}

.pop-nav__list a {
    text-decoration: none;
    color: var(--pop-text);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 99px;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    font-family: var(--font-jp);
    display: inline-block;
}

.pop-nav__list a:hover {
    background: var(--c-blue);
    color: #fff;
    transform: translateY(-2px) rotate(2deg);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.pop-nav__list a.is-active {
    background: var(--c-pink);
    color: #fff;
    border-color: var(--c-pink);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Staggered hover colors (Optional fun touch) */
.pop-nav__list li:nth-child(2n) a:hover {
    background: var(--c-yellow);
    color: var(--pop-text);
}

.pop-nav__list li:nth-child(3n) a:hover {
    background: var(--c-green);
    color: #fff;
}

/* --- Hero Section --- */
.pop-hero {
    position: relative;
    min-height: 85vh;
    /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

/* Animated Blobs */
.pop-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(40px);
    opacity: 0.8;
    border-radius: 50%;
    mix-blend-mode: multiply;
    /* Fix for white bg */
    animation: float 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.blob--yr {
    width: 50vw;
    height: 50vw;
    background: var(--c-yellow);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob--bl {
    width: 45vw;
    height: 45vw;
    background: var(--c-blue);
    bottom: -5%;
    right: -5%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.blob--pk {
    width: 30vw;
    height: 30vw;
    background: var(--c-pink);
    top: 30%;
    right: 20%;
    animation-delay: -1s;
    animation-duration: 7s;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    to {
        transform: translate(40px, 60px) scale(1.1) rotate(20deg);
    }
}

/* Kinetic Title Animation */
.pop-hero__title {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: clamp(80px, 15vw, 200px);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--pop-text);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    /* Entrance Animation */
    animation: revealUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) backwards;
}

.pop-hero__title .word {
    display: inline-block;
    transition: transform 0.3s;
}

.pop-hero__title:hover .word {
    transform: scale(1.05) rotate(2deg);
    color: transparent;
    -webkit-text-stroke: 2px var(--pop-text);
}

.pop-hero__title .amp {
    display: inline-block;
    font-size: 0.5em;
    vertical-align: middle;
    transform: rotate(12deg);
    color: var(--c-pink);
    animation: spinAmp 4s ease-in-out infinite;
}

@keyframes spinAmp {

    0%,
    100% {
        transform: rotate(12deg) scale(1);
    }

    50% {
        transform: rotate(-12deg) scale(1.2);
    }
}

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pop-hero__msg {
    font-size: 18px;
    font-weight: 700;
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 20px;
    border: 3px solid var(--pop-text);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    animation: revealUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.2s backwards;
}

/* --- Gallery Grid --- */
.gallery-section {
    padding-bottom: 120px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- Pop Card --- */
.pop-card {
    display: block;
    text-decoration: none;
    color: var(--pop-text);
    border-radius: var(--radius-l);
    background: #fff;
    border: 3px solid var(--pop-text);
    box-shadow: 8px 8px 0px var(--pop-text);
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
    position: relative;
}

.pop-card:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: 14px 14px 0px var(--pop-text);
}

.pop-card:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px var(--pop-text);
}

/* Theme Colors */
.pop-card--yellow .pop-card__visual {
    background-color: var(--c-yellow);
}

.pop-card--pink .pop-card__visual {
    background-color: var(--c-pink);
}

.pop-card--blue .pop-card__visual {
    background-color: var(--c-blue);
}

.pop-card--green .pop-card__visual {
    background-color: var(--c-green);
}

.pop-card__visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border-bottom: 3px solid var(--pop-text);
    position: relative;
    overflow: hidden;
}

.pop-card__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.pop-card__body {
    padding: 32px;
}

.pop-card__title {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.pop-card__desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Creator Badge */
.pop-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed #ddd;
    padding-top: 16px;
}

.creator-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.creator-badge__icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    border: 2px solid var(--pop-text);
    background-color: #eee;
}

.creator-badge__name {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 16px;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pop-text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 20px;
    transform: rotate(-15deg);
    transition: transform 0.3s;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.pop-card:hover .arrow-btn {
    transform: rotate(0deg) scale(1.1);
    background: var(--c-yellow);
    color: var(--pop-text);
}

/* --- Footer --- */
.pop-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #eee;
}

.pop-credit {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--pop-text);
    position: absolute;
    left: 10px;
    border-radius: 99px;
    transition: all 0.3s;
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 20px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 28px;
}

/* Active State for Button */
.mobile-menu-btn.is-active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

/* --- Mobile Breakpoint --- */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .pop-header {
        top: 0;
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        position: fixed;
    }

    .pop-header-left {
        width: auto;
        justify-content: flex-start;
        text-align: left;
    }

    .pop-tagline {
        display: none;
        /* Hide tagline on mobile for cleaner look, or keep if preferred */
    }

    /* Mobile Nav Overlay */
    .pop-nav {
        position: fixed;
        inset: 0;
        background: var(--pop-bg);
        z-index: 90;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        width: 100vw;
        height: 100vh;
    }

    .pop-nav.is-active {
        opacity: 1;
        visibility: visible;
    }

    .pop-nav__list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .pop-nav__list a {
        font-size: 20px;
        padding: 12px 32px;
    }
}

@media (max-width: 768px) {
    .pop-hero__title {
        font-size: 64px;
    }

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