@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;500&family=Zen+Maru+Gothic:wght@400;700&family=Shippori+Mincho:wght@400;700&display=swap');

/* Inlined variables.css for local compatibility */
:root {
    /* Colors */
    --color-primary-cyan: #00AEEF;
    --color-primary-yellow: #FFD700;
    --color-accent-red: #FF4B4B;
    --color-text-main: #333333;
    --color-text-sub: #666666;
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F0F8FF;
    /* AliceBlue */

    /* Fonts */
    --font-family-base: 'Zen Maru Gothic', sans-serif;
    --font-family-accent: 'Kiwi Maru', serif;
    /* For artistic touches */

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-default: all 0.3s ease;
}

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

body {
    font-family: var(--font-family-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-default);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-sm) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

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

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
}

.main-nav a {
    font-weight: 700;
    color: var(--color-text-sub);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
}

.main-nav a:hover {
    color: var(--color-primary-cyan);
    background-color: var(--color-bg-light);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

/* Show hamburger on mobile */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}


/* Hero Section */
.hero-section {
    position: relative;
    /* height: 100vh; Optimized for mobile scroll stability */
    min-height: 100vh;
    height: auto;
    /* Better mobile support */
    /* min-height: 600px; - 100vh covers this */
    z-index: 1;
    /* Background handled by .hero-gradient */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* overflow: hidden; Removed to prevent scroll interference */
    contain: paint layout;

    /* Force strict containment */
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Increased opacity for better readability */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    max-width: 800px;
    width: 90%;
    /* Ensure better mobile fit */
}

.hero-logo {
    width: 500px;
    max-width: 100%;
    /* Changed from 90% */
    height: auto;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    will-change: transform;
    /* Optimize rendering performance */
}

.hero-title {
    font-family: var(--font-family-accent);
    font-size: clamp(1rem, 4.5vw, 4rem);
    /* Responsive font size */
    color: var(--color-text-main);
    /* Changed to dark for contrast */
    margin-bottom: var(--spacing-md);
    white-space: nowrap;
    /* Prevent line break */
    /* Removed text-shadow for cleaner look on light bg */
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--color-text-main);
    /* Changed to dark for contrast */
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

/* Bubbles / Pop Shapes Decoration */
/* Organic Mesh Gradient Background */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #ffffff;
    /* Base fallback */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    /* Soft white/gray base */
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    -webkit-filter: blur(80px);
    /* Safari support */
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s infinite ease-in-out;
    transform: translate3d(0, 0, 0);
    /* Force hardware acceleration */
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: var(--color-primary-cyan);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: var(--color-primary-yellow);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    background: var(--color-accent-red);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-divider.fill-white .shape-fill {
    fill: var(--color-bg-white);
}

.wave-divider.fill-light .shape-fill {
    fill: var(--color-bg-light);
}

.wave-divider.fill-gray .shape-fill {
    fill: #f9f9f9;
}

/* Mobile Wave Adjustment */
@media (max-width: 768px) {
    .wave-divider svg {
        height: 100px;
    }
}

/* Concept Section */
.concept-section {
    position: relative;
    z-index: 10;
    background-color: var(--color-bg-white);
    text-align: center;
    transform: translate3d(0, 0, 0);
    /* Force hardware acceleration */
    margin-top: -1px;
    /* Seal sub-pixel gaps */
    /* Subtle Pattern */
    background-image: radial-gradient(var(--color-primary-cyan) 1px, transparent 1px), radial-gradient(var(--color-primary-yellow) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    /* Fade out the pattern */
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .concept-section {
        background-attachment: scroll;
    }
}

/* Masking the pattern a bit so it's not too loud */
.concept-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.concept-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-family-accent);
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: var(--spacing-lg);
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(to right, var(--color-primary-cyan), var(--color-primary-yellow), var(--color-accent-red));
    margin: 10px auto 0;
    border-radius: var(--radius-full);
}

.concept-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    color: var(--color-text-sub);
}

/* Concept Section v2 */
.concept-v2 {
    background-color: #f9f8f4;
    /* 温かみのあるベージュ */
    font-family: 'Shippori Mincho', 'Kiwi Maru', serif;
    color: #332d29;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .concept-v2 {
        padding: 80px 0;
    }
}

.concept-v2-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.concept-v2-headline {
    text-align: center;
    margin-bottom: 100px;
}

.concept-v2-headline p {
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.concept-v2-body {
    font-size: 1.15rem;
    line-height: 2.4;
    max-width: 800px;
    margin: 0 auto 100px;
}

.concept-v2-body p {
    margin-bottom: 2.5rem;
}

.three-wa-section {
    margin-bottom: 120px;
}

.three-wa-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #d4cdc3;
    padding-bottom: 0.8rem;
    display: block;
}

.three-wa-intro {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.three-wa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .three-wa-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.wa-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 205, 195, 0.3);
}

.wa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.wa-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #5d4037;
    line-height: 1.5;
}

.wa-card h4 span {
    font-size: 0.95rem;
    display: block;
    margin-top: 8px;
    font-weight: 400;
    opacity: 0.8;
    color: #8d6e63;
}

.wa-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: auto;
}

.concept-v2-outro {
    max-width: 800px;
    margin: 0 auto;
}

.concept-v2-outro h3 {
    font-size: 1.6rem;
    margin: 6rem 0 2.5rem;
    border-bottom: 2px solid #d4cdc3;
    padding-bottom: 0.8rem;
    display: block;
}

.concept-v2-outro p {
    font-size: 1.15rem;
    line-height: 2.4;
    margin-bottom: 2.5rem;
}

.concept-v2-outro .outro-highlight {
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    text-align: center;
    margin-top: 80px;
    line-height: 2;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 205, 195, 0.5);
}

/* Links Section */
.links-section {
    background-color: var(--color-bg-light);
    padding: var(--spacing-xl) 0;
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    /* Removed padding to let image fill */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 450px;
    /* Increased height for better visual */
    background-size: cover;
    background-position: center;
}

.image-card {
    border: none;
    /* Override color borders */
    color: #fff;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.image-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: auto;
    /* Push content to bottom */
    width: 100%;
}

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

.card-title {
    font-family: var(--font-family-accent);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.image-card .card-title {
    color: #fff;
}

.card-desc {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

/* Kokoaso Specifics */
.kokoaso-card .btn {
    background-color: rgba(255, 215, 0, 0.9);
    /* Primary Yellow */
    color: #333;
}

.kokoaso-card .btn:hover {
    background-color: #FFC000;
    color: #000;
}

/* Cocoart Specifics */
.cocoart-card .btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.cocoart-card .btn:hover {
    background-color: #fff;
    color: var(--color-primary-cyan);
}

/* Contact Section */
.contact-section {
    background-color: var(--color-bg-white);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background-color: #f9f9f9;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-address {
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.contact-map {
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.group-name {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
    font-weight: 700;
}

.contact-email {
    color: var(--color-primary-cyan);
    font-weight: 700;
    font-size: 1.1rem;
    word-break: break-all;
    /* Ensure long emails don't overflow */
}

.contact-email:hover {
    text-decoration: underline;
}

/* Footer */
/* =========================================
   Final Footer (Responsive & Premium)
   ========================================= */
.site-footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    border-top: 1px solid #e9ecef;
    color: var(--color-text-main);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand .footer-description {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.6;
}

.footer-nav-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-nav-group h4 {
    font-family: var(--font-family-accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-nav-group h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-primary-cyan);
    display: block;
    flex-shrink: 0;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
}

.footer-nav-group ul li {
    margin-bottom: 12px;
}

.footer-nav-group ul li a {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    transition: all 0.3s;
    display: block;
    text-transform: uppercase;
}

.footer-nav-group ul li a:hover {
    color: var(--color-primary-cyan);
    padding-left: 5px;
}

.footer-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    color: #666;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    color: var(--color-primary-cyan);
}

.footer-btn-donation {
    display: inline-block;
    background-color: #e91e63 !important;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    text-decoration: none !important;
}

.footer-btn-donation:hover {
    background-color: #c2185b !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #999;
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact-actions {
        grid-column: span 2;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-groups {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 200px;
        margin: 0 auto;
        text-align: left;
    }

    .footer-nav-group h4 {
        justify-content: flex-start;
    }

    .footer-contact-actions {
        grid-column: span 1;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================
   Cocoart Page Specific Styles
   ========================================= */

/* Hero Section */
.cocoart-hero {
    position: relative;
    /* height: 100vh; Optimized */
    min-height: 100vh;
    height: auto;
    min-height: 600px;
    background-image: url('../images/link-cocoart.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .cocoart-hero {
        background-attachment: scroll;
    }
}

.cocoart-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay for readability */
}

.cocoart-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cocoart-hero-logo {
    max-width: 80%;
    width: 400px;
    height: auto;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/*.cocoart-title {
    font-family: var(--font-family-accent);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}*/

.cocoart-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 15px;
    /* Moved down to create more space from logo content above */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: #fff;
    animation: scrollLine 2s infinite ease-in-out;
    transform-origin: top;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* =========================================
   Event Page Styles (2025 & 2026)
   ========================================= */

/* =========================================
   Navigation & Footer Utility
   ========================================= */

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--color-text-sub);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--color-text-sub);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--color-primary-cyan);
}

.breadcrumbs .separator {
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumbs .current {
    color: var(--color-text-main);
    font-weight: 700;
}

/* Fix for breadcrumbs hidden behind fixed header on event pages */
/* Fix for breadcrumbs hidden behind fixed header on event pages */
/* Not needed if placed below hero, but kept small padding for spacing */
.event-page .breadcrumbs,
.kokoaso-page .breadcrumbs,
.cocoart-page .breadcrumbs {
    padding-top: 20px;
    padding-bottom: 20px;
}


.event-hero {
    /* Existing event-hero styles... */
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event-2025 .event-hero {
    background: linear-gradient(to right, #0f2027, #203a43, #2c3e50);
    /* Darker, "Archive" feel */
}

.event-2026 .event-hero {
    background: linear-gradient(to right, #FFD700, #ffb347);
    /* Bright, "Coming Soon" */
    height: 80vh;
    /* Bigger impact */
}

.event-year {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.event-title {
    font-size: 4rem;
    font-family: var(--font-family-accent);
    margin-bottom: 1rem;
}

.event-date {
    font-size: 1.5rem;
    font-weight: 700;
}

.event-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-cyan);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-sub);
}

.highlight-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.highlight-card:nth-child(even) {
    flex-direction: row-reverse;
}

.highlight-img {
    flex: 1;
    height: 300px;
    background-color: #eee;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    flex: 1;
}

.highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.masonry-item {
    border-radius: var(--radius-sm);
}

/* 2026 Specific */
.instagram-btn {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border: none;
    margin-top: 2rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .highlight-card {
        flex-direction: column;
    }

    .highlight-card:nth-child(even) {
        flex-direction: column;
    }

    .event-title {
        font-size: 2.5rem;
    }

    .event-stats {
        gap: 1.5rem;
    }
}

/* Event Link Cards on Cocoart Page */
.event-links-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.event-link-card {
    display: block;
    width: 300px;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* =========================================
   Kokoaso Page Specific Styles
   ========================================= */

.kokoaso-page {
    background-color: #F9F4E8;
    /* Warm Cream Background */
    color: #5a4a42;
    /* Soft Brown Text */
}

/* Kokoaso Hero */
.kokoaso-hero {
    /* height: 70vh; Optimized */
    min-height: 70vh;
    height: auto;
    min-height: 500px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(#F3D063 20%, transparent 20%),
        radial-gradient(#88DBF2 20%, transparent 20%);
    background-color: #F9F4E8;
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
}

.kokoaso-hero-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 50% 40% 60% 40% / 60% 50% 40% 50%;
    /* Organic Shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 600px;
    position: relative;
}

.kokoaso-title {
    font-size: 4rem;
    color: #F3D063;
    /* Pop Yellow */
    font-family: var(--font-family-accent);
    text-shadow: 2px 2px 0 #333;
    margin-bottom: 0.5rem;
}

.kokoaso-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #88DBF2;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.kokoaso-catchphrase {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 700;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

/* Keyframes for dynamic movement */
@keyframes floatDynamic {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.9);
    }

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

.bubble-1 {
    width: 180px;
    height: 180px;
    background: #FFB7B2;
    /* Pink */
    border-radius: 50%;
    top: -10%;
    left: 5%;
    animation: floatDynamic 15s infinite ease-in-out;
}

.bubble-2 {
    width: 120px;
    height: 120px;
    background: #9EE0A0;
    /* Green */
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    animation: floatDynamic 18s infinite ease-in-out reverse;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    background: #F3D063;
    /* Yellow */
    border-radius: 50%;
    top: 40%;
    left: 15%;
    animation: floatDynamic 12s infinite ease-in-out 2s;
}

.shape-star {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 70px solid #FF9F1C;
    /* Orange */
    position: absolute;
    top: 15%;
    right: 20%;
    transform: rotate(35deg);
    animation: floatDynamic 20s infinite ease-in-out 1s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #88DBF2;
    /* Blue */
    position: absolute;
    bottom: 25%;
    left: 20%;
    transform: rotate(-15deg);
    opacity: 0.6;
    animation: floatDynamic 14s infinite ease-in-out 3s;
}

.shape-circle-outline {
    width: 100px;
    height: 100px;
    border: 5px solid #E91E63;
    /* Deep Pink */
    border-radius: 50%;
    position: absolute;
    top: 60%;
    right: 30%;
    opacity: 0.4;
    animation: floatDynamic 16s infinite ease-in-out 5s;
}

.shape-star:after {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 70px solid #F3D063;
    position: absolute;
    content: "";
    top: 30px;
    left: -50px;
}

/* Kokoaso Intro */
.kokoaso-intro .section-title {
    color: #FFB7B2;
}

.kokoaso-heading {
    font-family: var(--font-family-accent);
    color: #FF9F1C;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.pop-frame {
    border: 8px solid #FFF;
    border-radius: 20px;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.pop-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    /* Fixed max width for centering */
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.activity-card {
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
    display: block;
    /* Make it behave like a card even as an anchor */
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-img {
    height: 200px;
    width: 100%;
    /* background-color removed as we utilize actual images */
    position: relative;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-content {
    padding: 1.5rem;
    text-align: center;
}

.activity-content h3 {
    color: #5a4a42;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 700;
}

.activity-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Kokoaso CTA */
.kokoaso-cta {
    background-color: #FFF;
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 900px;
    padding: 4rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.kokoaso-btn {
    border: 2px solid transparent;
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.cocoart-btn {
    border: 2px solid transparent;
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.email-btn {
    background-color: #88DBF2;
    color: #FFF;
}

.email-btn:hover {
    background-color: #66ccee;
    color: #FFF;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFF;
}

.event-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-link-card.next {
    background: linear-gradient(135deg, #FFD700, #ffb347);
    /* Gold/Orange */
}

.event-link-card.past {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    /* Dark Blue/Teal */
}

.event-link-card h3 {
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
}

.event-link-card .label {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media screen and (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
}

.intro-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    aspect-ratio: 1 / 1;
    /* Square cards */
    background-color: #eee;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Placeholder coloring for visual variety */
.gallery-item:nth-child(even) {
    background-color: #e0f7fa;
}

/* Light Cyan */
.gallery-item:nth-child(odd) {
    background-color: #fff9c4;
}

/* Light Yellow */
/* =========================================
   Dropdown Menu Styles (Redesign with Split Toggle)
   ========================================= */

/* Desktop Dropdown */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav li {
    position: relative;
    height: 100%;
}

/* Wrapper for Link + Toggle Button */
.nav-item-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
    display: block;
    padding: 1.5rem 0.5rem;
}

/* Toggle Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    font-size: 0.8rem;
    color: #333;
    margin-left: -0.5rem;
    /* Pull closer to text */
}

/* Active State for Parent Item */
.main-nav .has-dropdown:hover>.nav-item-wrapper>a,
.main-nav a.active-parent {
    color: var(--color-primary-cyan);
}

.main-nav .has-dropdown>.nav-item-wrapper>a::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 0.4em;
    vertical-align: middle;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 240px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
    text-align: center;
    border-top: 2px solid var(--color-primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.main-nav .has-dropdown:hover .dropdown-menu,
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 1rem 1rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--color-text-main);
}

/* Mobile Dropdown (Hamburger) */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100dvh;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .main-nav li {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* Stack wrapper and dropdown */
        align-items: center;
    }

    .nav-item-wrapper {
        width: 100%;
        justify-content: center;
        position: relative;
    }

    .main-nav a {
        padding: 1rem;
    }

    /* Show toggle button on mobile */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    /* Hide the desktop arrow in the link since we have a button */
    .main-nav .has-dropdown>.nav-item-wrapper>a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        border-top: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
        min-width: 100%;
    }

    .dropdown-menu.active {
        max-height: 500px;
        margin-top: 0;
    }

    .dropdown-menu a {
        padding: 0.8rem 0;
        font-size: 0.9rem;
        color: #666;
        border-bottom: 1px solid #eee;
    }
}

/* Call to Action */
.cta-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

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

.btn-wrapper {
    margin-top: var(--spacing-lg);
}

.primary-btn {
    background-color: var(--color-primary-cyan);
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.primary-btn:hover {
    background-color: #0099cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 100%;
        height: 100dvh;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-nav.active {
        right: 0;
    }

    /* Padding Adjustments */
    .section {
        padding: var(--spacing-lg) 0;
    }

    .contact-content {
        padding: var(--spacing-md);
    }

    /* Text Sizes */
    .hero-title {
        font-size: clamp(1.2rem, 5vw, 2rem) !important;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .concept-text {
        font-size: 1rem;
        text-align: left;
        /* Easier to read on mobile */
    }

    /* Fix for mobile background attachment */
    .concept-section {
        background-attachment: scroll;
    }
}

/* =========================================
   Kokoaso Archives
   ========================================= */
.archives-grid {
    display: grid;
    /* Use auto-fit for responsive grid */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.archive-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.archive-card:nth-child(1) {
    border-color: #FFB7B2;
    color: #d66f69;
}

.archive-card:nth-child(2) {
    border-color: #9EE0A0;
    color: #5aa65c;
}

/* Kokoaso Logo Image */
.kokoaso-logo-img {
    max-width: 300px;
    /* Adjust as needed */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile adjustments if necessary */
@media screen and (max-width: 768px) {
    .kokoaso-logo-img {
        max-width: 200px;
    }
}

/* =========================================
   Event Detail Page Styles
   ========================================= */

.event-hero {
    background-color: var(--color-bg-light);
    /* Fallback */
    background: linear-gradient(135deg, #fff9c4 0%, #fff 100%);
    padding: 160px 0 80px;
    /* More top padding for fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event-date-tag {
    display: inline-block;
    background-color: var(--color-primary-cyan);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.event-title {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.event-location {
    color: #666;
    font-size: 1.1rem;
}

.report-main-visual {
    margin-bottom: 3rem;
}

.report-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #444;
}

.report-heading {
    font-size: 1.8rem;
    color: var(--color-primary-cyan);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.report-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

/* Voice Bubbles */
.voices-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.voice-bubble {
    background: #fff;
    border: 2px solid var(--color-primary-yellow);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    align-self: flex-start;
    max-width: 80%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.voice-bubble.right {
    align-self: flex-end;
    border-color: var(--color-primary-cyan);
    background: #f0fbff;
}

.voice-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--color-primary-yellow) transparent;
    display: block;
    width: 0;
}

.voice-bubble.right::after {
    left: auto;
    right: 40px;
    border-color: var(--color-primary-cyan) transparent;
}

.voice-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.voice-author {
    font-size: 0.9rem;
    color: #777;
    display: block;
    text-align: right;
}

.event-navigation {
    margin-top: 5rem;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

@media screen and (max-width: 768px) {
    .event-title {
        font-size: 1.8rem;
    }

    .voice-bubble {
        max-width: 100%;
        padding: 1.5rem;
    }
}

.archive-card:nth-child(3) {
    border-color: #88DBF2;
    color: #4faac4;
}

.archive-card:nth-child(4) {
    border-color: #F3D063;
    color: #cfaa3e;
}

.archive-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.archive-date {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family-accent);
    margin-bottom: 0.5rem;
}

.archive-label {
    font-size: 0.9rem;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
}

/* =========================================
   Sponsors Section
   ========================================= */
.sponsors-section {
    background-color: #fafafa;
    padding: 100px 0;
}

.sponsors-section .section-title {
    margin-bottom: 0.5rem;
}

.sponsors-section .section-subtitle {
    margin-bottom: 3rem;
    display: block;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-logo-item {
    flex: 0 1 220px;
    /* Increased from 180px */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    /* Increased from 70px */
    object-fit: contain;
    /* Removed grayscale and opacity for full color */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

.sponsor-logo-item img:hover {
    transform: translateY(-10px) scale(1.05);
    /* Float up and slight scale */
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
    /* Soft shadow for depth */
}

.sponsor-names-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-top: 0.5rem;
    /* Reduced from 2rem */
}

.sponsor-names-container::before {
    content: '';
    display: none;
    /* Removed the line */
    width: 40px;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto 2rem;
}

.sponsor-names-text {
    font-size: 0.85rem;
    line-height: 2.4;
    color: #777;
    font-weight: 400;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
    .sponsors-section {
        padding: 60px 0;
    }

    .sponsor-logos {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .sponsor-logo-item {
        flex: 0 1 120px;
    }

    .sponsor-logo-item img {
        max-height: 50px;
    }
}

/* =========================================
   Contact Section Button
   ========================================= */
.contact-btn {
    display: inline-block;
    background-color: #E91E63;
    /* Pink accent color */
    color: #fff !important;
    /* Ensure text is white */
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #E91E63;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-top: 3rem;
    /* Increased top margin */
    margin-bottom: 3rem;
    /* Added bottom margin */
}

.contact-btn:hover {
    background-color: #fff;
    color: #E91E63 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

/* =========================================
   Kokoaso Event Page (2024.07)
   ========================================= */

.kokoaso-hero {
    background-color: #fdf5e6;
    /* Light cream background */
    min-height: 100vh;
    /* Force full viewport height */
    padding: 80px 20px 0;
    /* Top padding for fixed header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.kokoaso-hero-content {
    position: relative;
    z-index: 2;
}

.kokoaso-logo-hero {
    max-width: 80%;
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 0px rgba(0, 0, 0, 0.1));
}

.event-date-badge {
    background: #FF5722;
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.event-date-badge span {
    display: inline-block;
    margin: 0 5px;
    font-weight: bold;
}

.event-date-badge .year {
    font-size: 1.2rem;
}

.event-date-badge .date {
    font-size: 2.5rem;
    line-height: 1;
}

.event-date-badge .day {
    font-size: 1.2rem;
}

.event-date-badge .time {
    font-size: 1.2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding-left: 10px;
    margin-left: 10px;
}

.event-catch {
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Buildings Grid */
.buildings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .buildings-grid {
        grid-template-columns: 1fr;
    }
}

.building-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px solid #eee;
    transition: transform 0.3s ease;
}

.building-card:hover {
    transform: translateY(-5px);
}

.building-card.mitsujiya {
    border-color: #FFC107;
    background: #FFFDE7;
}

.building-card.suwa {
    border-color: #2196F3;
    background: #E3F2FD;
}

.building-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.shop-list {
    list-style: none;
    padding: 0;
}

.shop-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shop-list li:last-child {
    border-bottom: none;
}

.shop-category {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.shop-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.shop-description {
    display: block;
    font-size: 1rem;
    color: #333;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.menu-category h3 {
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-category h3 small {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.menu-header {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 0.2rem;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.menu-list li.special-offer {
    background: #FFEB3B;
    padding: 0.5rem;
    border-radius: 5px;
    justify-content: center;
    font-weight: 700;
}

.highlight-ice {
    border: 2px solid #00BCD4;
    background: #E0F7FA;
}

.price-large {
    font-size: 1.5rem;
    color: #E91E63;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Highlights */
.event-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    background: #FF9800;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transform: rotate(-2deg);
    box-shadow: 0 4px 0 #E65100;
}

.highlight-item:nth-child(even) {
    transform: rotate(2deg);
    background: #8BC34A;
    box-shadow: 0 4px 0 #558B2F;
}

/* Ticket Info */
.ticket-info {
    padding-bottom: 4rem;
}

.ticket-box {
    background: #F8BBD0;
    border: 4px dashed #E91E63;
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
    max-width: 100%;
}

.ticket-box h3 {
    color: #880E4F;
    margin-top: 0;
}

.ticket-box .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E91E63;
    background: #fff;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transform: rotate(-2deg);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Kokoaso Gallery */
/* Kokoaso Gallery (True Masonry) */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    margin-top: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
    /* Remove aspect-ratio to let image define height */
}

.masonry-item img {
    width: 100%;
    height: auto;
    /* Natural height */
    display: block;
    /* Remove bottom space */
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* =========================================
   Kokoaso Winter Theme (2024.12)
   ========================================= */

body.winter-theme {
    background-color: #f0f8ff;
    /* AliceBlue base */
}

/* Winter Hero */
.winter-hero {
    background: linear-gradient(135deg, #e0f7fa 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.winter-badge {
    background: #00bcd4;
    /* Cyan */
    color: #fff;
    transform: rotate(2deg);
    /* Different angle from summer */
}

/* Snow Effect */
.hero-snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(4px 4px at 10% 10%, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
        radial-gradient(6px 6px at 20% 40%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        radial-gradient(3px 3px at 50% 60%, rgba(255, 255, 255, 0.9) 50%, transparent 100%),
        radial-gradient(4px 4px at 80% 30%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    background-size: 50% 50%;
    animation: snow-fall 20s linear infinite;
    opacity: 0.6;
}

@keyframes snow-fall {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 10% 100%, 20% 100%, 50% 100%, 80% 100%;
    }
}

/* Scroll Animations */
.scroll-trigger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-trigger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for gallery items (optional enhancement) */
.gallery-item.scroll-trigger:nth-child(2n) {
    transition-delay: 0.1s;
}

.gallery-item.scroll-trigger:nth-child(3n) {
    transition-delay: 0.2s;
}

/* Stamp Rally Box */
.stamp-rally-box {
    background: #fff;
    border: 3px dashed #ff4b4b;
    /* Christmas Red */
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
}

.stamp-rally-box h3 {
    color: #ff4b4b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stamp-rally-box::before {
    content: '★';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ffd700;
    background: #fff;
    padding: 0 10px;
}

/* Event Note */
.event-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Highlight Christmas */
.highlight-christmas {
    background-color: #ffebee;
    border: 2px solid #ef5350;
}

/* =========================================
   Breadcrumbs
   ========================================= */
.breadcrumbs {
    background-color: #f9f9f9;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: #ccc;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--color-primary-cyan);
    text-decoration: underline;
}

.breadcrumbs span {
    color: #333;
    font-weight: 600;
}

/* =========================================
   Kokoaso Summer 2025 Theme
   ========================================= */

body.summer-2025-theme {
    background-color: #fffde7;
    /* Light Yellow base */
}

/* Summer 2025 Hero */
.summer-2025-hero {
    background: linear-gradient(135deg, #fff176 0%, #4fc3f7 100%);
    /* Yellow to Blue gradient */
    position: relative;
    overflow: hidden;
}

.summer-2025-badge {
    background: #ff6f00;
    /* Amber */
    color: #fff;
    transform: rotate(-3deg);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

/* Sunshine Effect */
.hero-sunshine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    animation: sunshine-rotate 60s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes sunshine-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Special Events Section */
.special-events {
    padding: 4rem 0;
    background-color: #fff;
}

.event-card-large {
    background: #fdf5e6;
    border: 4px solid #8d6e63;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-card-large.cocohana {
    background-color: #ffe0b2;
    /* Orange lighten */
    border-color: #e65100;
}

.special-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 5px solid #ccc;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card.cocomiru {
    border-top-color: #00bcd4;
    /* Cyan */
    background: #e0f7fa;
}

.event-card.cocokiku {
    border-top-color: #ab47bc;
    /* Purple */
    background: #f3e5f5;
}

.event-title-en {
    font-family: 'Fredoka One', cursive;
    /* Or similar fun font if available, fallback */
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-subtitle {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #555;
}

.event-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin-top: 1rem;
}

.event-details li {
    margin-bottom: 0.5rem;
}

.event-icon {
    font-size: 3rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* =========================================
   Kokoaso Winter 2025 Theme
   ========================================= */

body.winter-2025-theme {
    background-color: #f3f9fb;
    /* Very light blue snowy base */
}

/* Winter 2025 Hero */
.winter-2025-hero {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    /* Clear Winter Sky */
    position: relative;
    overflow: hidden;
}

.winter-2025-badge {
    background: #0d47a1;
    /* Deep Blue */
    color: #fff;
    transform: rotate(3deg);
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.4);
}

/* Cocomana Feature Section */
.cocomana-feature {
    padding: 3rem 0;
}

.cocomana-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    border: 4px solid #f44336;
    /* Ambulance Red */
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.2);
}

.cocomana-icon {
    font-size: 5rem;
    flex: 0 0 auto;
}

.cocomana-title {
    font-size: 2rem;
    color: #f44336;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka One', cursive;
}

.cocomana-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

/* Timeline/Schedule */
.event-schedule {
    background-color: #fff;
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    border-left: 3px solid #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    /* Adjust based on border/padding */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #aaa;
    border-radius: 50%;
}

.timeline-item.event-highlight::before {
    border-color: #00bcd4;
    /* Cyan */
    background: #e0f7fa;
}

.timeline-item.event-feature::before {
    border-color: #f44336;
    /* Red */
    background: #ffebee;
}

.timeline-item.event-music::before {
    border-color: #9c27b0;
    /* Purple */
    background: #f3e5f5;
}

.timeline-time {
    font-weight: 800;
    font-size: 1.2rem;
    color: #444;
    width: 80px;
    flex-shrink: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.timeline-content {
    font-size: 1.1rem;
    color: #333;
    background: #f9f9f9;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Food Menu */
.food-menu-section {
    background-color: #fff8e1;
    /* very light amber */
    padding: 4rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-category.drink-area {
    border-top: 5px solid #29b6f6;
}

.menu-category.food-area {
    border-top: 5px solid #ffa726;
}

.menu-category.cake-area {
    border-top: 5px solid #8d6e63;
}

.menu-cat-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed #eee;
    padding-bottom: 0.5rem;
    text-align: center;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    border-bottom: 1px dotted #eee;
    padding-bottom: 0.2rem;
}

.menu-list .price {
    font-weight: 700;
    background: #ff5722;
    color: #fff;
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.menu-illustration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(-10deg);
}

.menu-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

/* =========================================
   Cocoart 2025 Theme (Artistic)
   ========================================= */

body.art-2025-theme {
    background-color: #fff0f5;
    /* Lavender Blush */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(173, 216, 230, 0.4) 0%, transparent 25%);
    font-family: 'Shippori Mincho', serif;
    /* Elegant serif font */
}

/* Art Hero */
.art-2025-hero {
    height: 80vh;
    min-height: 500px;
    background-image: url('../images/cocoart-2025/cocoart-2025-hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.art-2025-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark overlay for text readability */
}

.cocoart-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    max-width: 600px;
    margin: 0 1rem;
}

.art-2025-hero .hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #e91e63;
    /* Pink */
}

.art-2025-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    align-items: baseline;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.meta-item .label {
    background: #333;
    color: #fff;
    padding: 2px 8px;
    font-size: 0.8rem;
    border-radius: 2px;
}

.meta-item .value {
    font-size: 1.5rem;
    font-weight: bold;
}

.meta-item .location {
    font-size: 1rem;
    color: #666;
}

/* Art Intro */
.art-intro {
    padding: 4rem 0;
}

.art-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.art-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e91e63;
    margin: 10px auto 0;
}

.art-desc {
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
    font-family: 'Shippori Mincho', serif;
}

/* Feature Sections (Live Art, etc) */
.art-feature {
    padding: 4rem 0;
    overflow: hidden;
}

.feature-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-layout.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.feature-layout.reverse .image-frame {
    transform: rotate(-2deg);
}

.feature-image:hover .image-frame {
    transform: rotate(0);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-artist,
.feature-project {
    color: #e91e63;
    display: block;
    font-size: 2.8rem;
    margin-top: 0.5rem;
}

.feature-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Marche Grid */
.marche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.marche-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.marche-item:hover {
    transform: translateY(-5px);
    background: #fff;
}

.marche-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.marche-item .text {
    font-size: 1rem;
    font-weight: 500;
}

/* Exhibition Card */
.exhibition-card {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    padding: 3rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 4rem auto;
    max-width: 800px;
}

.exhibition-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Shippori Mincho', serif;
}

.exhibition-date,
.exhibition-place {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.exhibition-price {
    font-size: 1.2rem;
    color: #ffeb3b;
    margin-bottom: 2rem;
    font-weight: bold;
}

.access-info {
    font-size: 0.9rem;
    color: #ccc;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    display: inline-block;
}

.access-info p {
    margin-bottom: 0.5rem;
}

/* Masonry Gallery */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    margin-top: 3rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

@media (max-width: 768px) {

    .feature-layout,
    .feature-layout.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .masonry-grid {
        column-count: 2;
    }

    .art-2025-hero .hero-title {
        font-size: 2.5rem;
    }

    .feature-artist,
    .feature-project {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}

/* =========================================
   Cocoart 2025 Additional Styles
   ========================================= */

/* Exhibitor Lists */
.exhibitor-list-wrapper {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.exhibitor-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.exhibitor-list li {
    font-size: 1rem;
    color: #444;
}

.marche-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.marche-cat {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.marche-cat-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px dotted #e91e63;
    padding-bottom: 0.5rem;
}

.marche-text-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
}

.marche-text-list li {
    font-size: 0.95rem;
    color: #555;
    background: #fafafa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Sponsor Images Grid */
.sponsor-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.sponsor-img-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sponsor-img-item:hover img {
    transform: scale(1.02);
}

/* Donation Button */
.donation-cta-section {
    padding: 4rem 0 6rem;
    text-align: center;
}

.donation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff4081, #f50057);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 0, 87, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 0, 87, 0.6);
}

.donation-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* =========================================
   Cocoart 2025 Sponsors & Partners Refinement
   ========================================= */

.art-sponsors-visual {
    padding: 4rem 0 6rem;
    background-color: #fff;
}

.sponsor-group {
    margin-bottom: 4rem;
    text-align: center;
}

.sponsor-group:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    /* Reduced from 2rem */
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    display: none;
    /* Removed the line */
}

/* Images Grid */
.sponsor-images-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sponsor-img-item {
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-img-item:hover {
    transform: translateY(-5px);
}

.sponsor-img-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Optional: explicit max-height to keep logos uniform */
    max-height: 100px;
}

/* Specific Sizes */
.main-sponsors .sponsor-img-item {
    width: 200px;
    /* Larger for main sponsors */
}

.main-sponsors img {
    max-height: 120px;
}

.cm-cooperation .sponsor-img-item,
.cooperation-img .sponsor-img-item {
    width: 160px;
}

/* Text Lists (Support & Cooperation) */
.support-list,
.cooperation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    /* Row gap 1rem, Col gap 2rem */
}

.support-list li,
.cooperation-list li {
    font-size: 0.95rem;
    color: #444;
    white-space: nowrap;
    /* Keep names on one line */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .sponsor-images-grid {
        gap: 1.5rem;
    }

    .main-sponsors .sponsor-img-item {
        width: 150px;
    }

    .main-sponsors img {
        max-height: 80px;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}


/* =========================================
   Sponsor Section Refinement (Merihari)
   ========================================= */

/* English Subtitle Styling */
.en-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 0.2rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

/* Main Sponsor Group - Prominent Design */
.main-sponsor-group {
    background: #fff;
    /* Clean white background */
    border: 3px solid #ffccbc;
    /* Soft orange/pink accent */
    border-radius: 20px;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Use a ribbon-like or prominent style for the Main Sponsor Title */
.main-sponsor-group .section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #d84315;
    /* Deep Orange */
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.main-sponsor-group .section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d84315;
    margin: 10px auto 0;
    border-radius: 2px;
}

.main-sponsor-group .en-subtitle {
    color: #ff7043;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}


/* Support & Cooperation Groups - distinct but less prominent */
.support-group,
.cm-group,
.cooperation-group {
    margin-bottom: 3.5rem;
    padding: 0 1rem;
    position: relative;
}

/* Add a subtle divider/bg for specific styling if needed, or keep clean */

.support-group .section-subtitle,
.cm-group .section-subtitle,
.cooperation-group .section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #555;
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Simple underline for secondary sections */
.support-group .section-subtitle::after,
.cm-group .section-subtitle::after,
.cooperation-group .section-subtitle::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
}

.support-group .en-subtitle,
.cm-group .en-subtitle,
.cooperation-group .en-subtitle {
    color: #bbb;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* =========================================
   Refine Kokoaso Contact Button
   ========================================= */
/* =========================================
   Refine Kokoaso Contact Button & Instagram
   ========================================= */

/* Shared Base Style for Kokoaso Buttons */
.kokoaso-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    /* Explicit fixed height */
    padding: 0 3rem;
    /* Horizontal padding */
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    /* Include padding/border in height */
    font-size: 1.1rem;
    line-height: 1;
    /* Reset line-height to avoid vertical shift */
}

/* Email Button (Pink) */
.kokoaso-btn.email-btn {
    background-color: #E91E63;
    color: #fff !important;
    border: 2px solid #E91E63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.kokoaso-btn.email-btn:hover {
    background-color: #fff;
    color: #E91E63 !important;
    transform: translateY(-3px);
}

/* Instagram Button (Gradient) */
.kokoaso-btn.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    border: 2px solid transparent;
    /* Transparent border to match size */
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
    /* Ensure background covers the padding-box area */
    background-clip: padding-box, border-box;
    background-origin: border-box;
    /* Ideally simple background is fine with transparent border for sizing */
    margin-top: 0 !important;
    /* Fix alignment issue forcibly */
}

.kokoaso-btn.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
    opacity: 0.95;
    color: #fff !important;
}

/* Cocoart Instagram Button */
.cocoart-btn.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
    background-clip: padding-box, border-box;
    background-origin: border-box;
    margin-top: 0 !important;
}

.cocoart-btn.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
    opacity: 0.95;
    color: #fff !important;
}

/* Ensure button group has spacing */
.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Adjust for mobile */
@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .kokoaso-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
        /* Prevent overly wide buttons on mobile */
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #555;
    transform: translateY(-5px);
}

.back-to-top::after {
    content: "▲";
    font-size: 1.2rem;
}

/* Kokoaso Redesign 2026 */
.kokoaso-v2-section {
    padding: 120px 0;
    line-height: 2.2;
    font-size: 1.15rem;
    color: #444;
}

@media (max-width: 768px) {
    .kokoaso-v2-section {
        padding: 80px 0;
    }
}

.kokoaso-v2-intro {
    background-color: #fff;
    text-align: center;
}

.kokoaso-v2-container-narrow {
    max-width: 850px;
    margin: 0 auto;
}

.kokoaso-v2-catchphrase {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 60px;
    line-height: 1.3;
    /* 街の楽しそうな雰囲気を出すグラデーション */
    background: linear-gradient(135deg, #FF6B6B, #FFD93D, #6BCB77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.kokoaso-v2-intro p {
    text-align: left;
    margin-bottom: 2rem;
}

.kokoaso-v2-highlight-box {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 8px solid var(--color-primary-cyan);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.8;
}

.kokoaso-v2-why-play {
    background-color: #fafafa;
}

.why-play-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

@media (max-width: 900px) {
    .why-play-cards {
        grid-template-columns: 1fr;
    }
}

.why-play-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border-top: 10px solid var(--color-primary-yellow);
    display: flex;
    flex-direction: column;
}

.why-play-card.for-disabled {
    border-top-color: var(--color-primary-cyan);
}

.why-play-card p {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.kokoaso-v2-civic-pride {
    background-color: #fff;
}

.kokoaso-v2-letter-section {
    background-color: #fdf6e3;
    padding: 120px 0;
}

.kokoaso-v2-letter {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 80px 60px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .kokoaso-v2-letter {
        padding: 40px 30px;
    }
}

.kokoaso-v2-letter::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffccbc'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.6;
}

.kokoaso-v2-letter h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    color: #e64a19;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #ffccbc;
    padding-bottom: 1rem;
    display: inline-block;
}

.kokoaso-v2-letter p {
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 1.5rem;
    line-height: 2.4;
}

/* Cocoart Redesign 2026 */
.cocoart-v2-section {
    background-color: #fff;
    color: #2e2e2e;
    padding: 120px 0;
    line-height: 2.2;
    font-size: 1.15rem;
    position: relative;
}

@media (max-width: 768px) {
    .cocoart-v2-section {
        padding: 80px 0;
    }
}

.cocoart-v2-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.cocoart-v2-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    line-height: 1.4;
}

.cocoart-v2-body p {
    margin-bottom: 2.5rem;
}

.cocoart-v2-episode-box {
    background-color: #f5f5f5;
    padding: 70px 60px;
    border-radius: 4px;
    margin: 80px 0;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.15rem;
    line-height: 2.4;
    position: relative;
}

.cocoart-v2-episode-box::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236BCB77' opacity='0.2' d='M30,50 C30,30 50,20 70,30 C90,40 80,70 60,80 C40,90 30,70 30,50' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    z-index: -1;
}

@media (max-width: 768px) {
    .cocoart-v2-episode-box {
        padding: 45px 30px;
        margin: 60px 0;
    }
}

.cocoart-v2-section-header {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 6rem 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a1a1a;
}

.cocoart-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-palette {
    /* アートの象徴である「パレット」をイメージしたアイコン */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234ECDC4'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5 11 5.67 11 6.5 10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

.icon-heart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B6B'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.icon-star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFE66D'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

/* Abstract Backgrounds */
.bg-watercolor {
    background-image: radial-gradient(circle at 10% 10%, rgba(107, 203, 119, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 217, 61, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 60%);
}

.cocoart-v2-footer-box {
    text-align: center;
    margin-top: 100px;
    padding: 60px;
    border: 1px solid #eee;
    background-color: #fafafa;
    border-radius: 4px;
}

/* New Decorative Elements for Cocoart V2 */
.cocoart-v2-section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cocoart-v2-lead {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.2rem;
    line-height: 2;
    color: #1a1a1a;
    border-left: 4px solid #4ECDC4;
    padding-left: 24px;
    margin-bottom: 3rem;
    font-weight: 500;
}

.text-highlight {
    background: linear-gradient(transparent 60%, rgba(255, 230, 109, 0.4) 60%);
    padding: 0 4px;
    font-weight: 700;
}

.brush-underline {
    position: relative;
    display: inline-block;
}

.brush-underline::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50% / 10%;
    z-index: -1;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffe66d 0%, transparent 70%);
    top: 10%;
    right: -150px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
    bottom: 20%;
    left: -120px;
}

.cocoart-v2-body p {
    position: relative;
    z-index: 2;
}