/* ==========================================================================
   1. Base & Reset & Utilities
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    background-image: none;
    margin: 0;
    padding: 0;
    font-family: 'M PLUS Rounded 1c', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

main {
    background-image: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url(../../assets/img/hawaii3.jpg);
    background-repeat: no-repeat;
    background-clip: content-box;
    background-attachment: fixed;
}

a {
    color: #ff3366;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- Layout Containers --- */
.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-wrapper {
    margin-bottom: 80px;
}

.colored-wrapper {
    border-radius: 30px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.inner-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- Section Color themes --- */
.bg-blue-light {
    background-color: #f0f9ff;
    border: 2px solid #bae6fd;
}

.bg-pink-light {
    background-color: #fff1f2;
    border: 2px solid #fecdd3;
}

.bg-pink-strong {
    background-color: #ffb8c6;
    position: relative;
}

.bg-orange-light {
    background-color: #fff7ed;
    border: 2px solid #ffedd5;
}

.bg-green-light {
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.bg-emerald-light {
    background-color: #ecfdf5;
    border: 2px solid #a7f3d0;
}

.bg-gray-light {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
}

/* --- Helper Utilities --- */
.text-center {
    text-align: center;
}

.p-0 {
    padding: 0 !important;
}

.p-10 {
    padding: 10px !important;
}

.pt-50 {
    padding-top: 50px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}


/* ==========================================================================
   2. Global Typography & Components
   ========================================================================== */
/* --- Titles --- */
.pop-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        3px 3px 0 #005a9c, -1px -1px 0 #005a9c,
        1px -1px 0 #005a9c, -1px 1px 0 #005a9c,
        1px 1px 0 #005a9c;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pop-title-small {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 0 #ff3366, -1px -1px 0 #ff3366, 1px -1px 0 #ff3366, -1px 1px 0 #ff3366, 1px 1px 0 #ff3366;
    margin-bottom: 15px;
}

.text-orange {
    text-shadow: 3px 3px 0 #d35400, -1px -1px 0 #d35400, 1px -1px 0 #d35400, -1px 1px 0 #d35400, 1px 1px 0 #d35400;
}

.text-emerald {
    text-shadow: 3px 3px 0 #047857, -1px -1px 0 #047857, 1px -1px 0 #047857, -1px 1px 0 #047857, 1px 1px 0 #047857;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #005a9c;
    background: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border: 2px dashed #00a4e4;
}

.section-desc {
    font-size: 1.2rem;
    font-weight: 900;
    color: #555;
}

/* --- Badges & Elements --- */
.date-badge-bold {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-right: 15px;
    vertical-align: middle;
}

.badge-yellow {
    background-color: #eab308;
    color: #92400e;
}

.badge-pink {
    background-color: #ec4899;
}

.badge-blue {
    background-color: #3b82f6;
}

.badge-free {
    background-color: #fbbf24;
    color: #92400e;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: inline-block;
}

.badge-free.size-small {
    padding: 4px 15px;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.title-with-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}


/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.global-nav ul {
    display: flex;
    gap: 20px;
}

.global-nav a {
    font-weight: 900;
    color: #005a9c;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.global-nav a:hover {
    color: #ff3366;
}

.hamburger {
    display: none;
}


/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-poster {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background-color: transparent;
    overflow: hidden;
}

.hero-poster img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
}

.poster-img {
    max-width: 100%;
    width: 650px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 90, 156, 0.3);
    margin: 0 auto;
    display: block;
    border: 6px solid #fff;
    transform: rotate(-1deg);
    position: relative;
    z-index: 2;
}

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

.hero-wave svg {
    height: 70px;
}


/* ==========================================================================
   5. Malama Hawaii Section (寄付)
   ========================================================================== */
.malama-section {
    padding-top: 80px;
    background-size: cover;
    background-position: center;
}

.donation-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    letter-spacing: 1px;
}

.donation-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.image-card {
    flex: 1 1 calc(50% - 15px);
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.donation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donation-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 30px;
}

.malama-logo {
    width: 180px;
    margin-bottom: 30px;
}

.btn-malama {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22 0%, #ff3366 100%);
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}


/* ==========================================================================
   6. Dance Stage Section
   ========================================================================== */
.section-bg-light {
    background-color: #ffffff;
}

.day-container {
    background: #fffaf5;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.day-blue {
    border-top: 10px solid #00a4e4;
    border-bottom: 2px solid #e0f2fe;
}

.day-pink {
    border-top: 10px solid #ff69b4;
    border-bottom: 2px solid #fce7f3;
}

.day-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 35px;
    border-bottom: 3px dashed #e2e8f0;
    padding-bottom: 15px;
}

.performer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px 25px;
}

.performer-card {
    background: #fdfdfd;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.performer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #ff3366;
}

.time-badge {
    background: #005a9c;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 6px 22px;
    border-radius: 20px;
    position: absolute;
    top: -18px;
    box-shadow: 0 4px 10px rgba(0, 90, 156, 0.3);
}

.time-yellow {
    background: #f1c40f;
    color: #d35400;
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
}

.p-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
}

.no-img-box {
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #cbd5e1;
}

.p-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: #005a9c;
    line-height: 1.4;
    margin-top: auto;
}

.p-sub {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.special-event-box {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    position: relative;
    border: 5px solid #fff;
}

.special-desc {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.free-ribbon {
    position: absolute;
    top: 25px;
    left: -40px;
    background: #ffd700;
    color: #d11242;
    padding: 8px 50px;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#stage .pop-title {
    color: #00a4e4;
    margin-bottom: 10px;
    text-align: center;
}

.stage-trial-title {
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: 900;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.15), 1px -1px 0 rgba(0,0,0,0.15), -1px 1px 0 rgba(0,0,0,0.15), 1px 1px 0 rgba(0,0,0,0.15);
}


/* ==========================================================================
   7. Workshop Section
   ========================================================================== */
.workshop-wide-wrapper {
    display: flex;
    gap: 40px;
}

.workshop-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-gel-img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.workshop-info-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
}

.workshop-info-list.mt-20 {
    margin-top: 20px;
}

.workshop-info-list li span {
    font-weight: 900;
    color: #333;
}

.workshop-desc-blue {
    margin-top: 10px;
    font-weight: bold;
    color: #00a4e4;
}

.workshop-desc-pink {
    margin-top: 10px;
    font-weight: bold;
    color: #ff6b81;
}

.workshop-item h4 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 900;
}

.workshop-item.bg-orange-light h4 {
    color: #ea580c;
}

.workshop-item.bg-pink-light h4 {
    color: #ff6b81;
}

.note {
    font-size: 0.85rem;
    color: #e53e3e;
    margin-top: 5px;
}


/* ==========================================================================
   8. Marche Section
   ========================================================================== */
.fun-card-wrapper {
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.fun-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.fun-card:hover {
    transform: translateY(-8px);
}

.fun-card-header {
    padding: 15px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 1.2rem;
}

.bg-blue {
    background: #00a4e4;
}

.bg-pink {
    background: #ff69b4;
}

.bg-green {
    background: #2e8b57;
}

.bg-orange {
    background: #e67e22;
}

.fun-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.loc-time {
    font-weight: 900;
    color: #005a9c;
    background: #f0f8ff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.info-list li {
    font-size: 1.1rem;
    font-weight: 900;
    color: #444;
    border-bottom: 2 dotted #eee;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

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

.fun-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-top: auto;
    text-align: center;
}

.fun-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.fun-info {
    background-color: #f7fafc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: bold;
    font-size: 1.05rem;
    line-height: 1.6;
}

.marche-lead {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2d3748;
    line-height: 1.8;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

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

.shop-name {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #2d3748;
    background-color: #f7fafc;
    border-top: 1px solid #edf2f7;
}

.shop-title-sub {
    text-align: center;
    margin: 60px 0 40px;
    border: none;
    background: none;
    padding: 0;
}

.shop-name-highlight {
    color: #dd6b20;
}


/* ==========================================================================
   9. Rally Section
   ========================================================================== */
.rally-section {
    padding-bottom: 8px;
    background-color: #fffaf0;
}

.rally-card {
    background: #ffffff;
    border: 4px solid #34d399;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(4, 120, 87, 0.1);
    position: relative;
    overflow: hidden;
}

.rally-ribbon {
    position: absolute;
    top: 20px;
    right: -45px;
    background: #ff4757;
    color: #fff;
    font-weight: 900;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rally-main-title {
    font-size: 2.2rem;
    color: #047857;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
    border-left: 8px solid #34d399;
    padding-left: 15px;
}

.rally-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.rally-info-box {
    flex: 2;
    min-width: 300px;
}

.rally-badge-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rally-desc {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 25px;
}

.text-pink {
    color: #ff3366;
    font-size: 1.3rem;
}

.aloha-badge {
    background: #fef08a;
    border: 4px dashed #eab308;
    color: #a16207;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(5deg);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.aloha-badge span {
    font-size: 1.8rem;
    color: #ca8a04;
}

.rally-split-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.rally-map-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.rally-status-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
    font-weight: 700;
    color: #4b5563;
}

.rally-status-list li {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.rally-status-list li::before {
    content: "🌴";
    position: absolute;
    left: 0;
    top: 0;
}

.rally-status-list li strong {
    color: #047857;
    font-weight: 900;
}

.rally-badge-container {
    margin-bottom: 10px;
}

.rally-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #047857;
    line-height: 1.4;
}

.rally-desc-detail {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    font-weight: 700;
}


/* ==========================================================================
   10. Access Map Section
   ========================================================================== */
.map-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.map-container-box {
    background: #fffaf7;
    border-radius: 30px;
    padding: 30px;
    border: 3px solid #ffedd5;
    box-shadow: 0 10px 30px rgba(230,126,34,0.05);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-iframe-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 4px solid #fff;
    line-height: 0;
}

.map-iframe-wrapper.no-border-hidden {
    padding: 0;
    overflow: hidden;
    border: none;
    margin-bottom: 20px;
}

.map-iframe-wrapper iframe {
    border: 0;
    display: block;
}

.map-info {
    padding: 10px 10px 5px;
}

.map-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #005a9c;
    margin-bottom: 10px;
}

.map-info .address {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 15px;
}

.map-info .cooperation {
    font-size: 1.2rem;
    color: #e67e22;
}

#map .pop-title {
    margin-bottom: 10px;
    color: #005a9c;
    text-align: center;
    text-shadow: 2px 2px 0 #fff;
}

.map-footer {
    text-align: center;
    padding-top: 10px;
}

.map-footer h3 {
    color: #005a9c;
    font-weight: 900;
}


/* ==========================================================================
   11. Bottom CTA Section
   ========================================================================== */
.bottom-cta {
    padding: 60px 0 80px;
    background-color: #fffaf0;
}

.bottom-cta.transparent {
    padding: 0 0 80px;
    background-color: transparent;
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #005a9c;
    margin-bottom: 20px;
}

.btn-festival {
    display: inline-block;
    background: linear-gradient(135deg, #ff3366 0%, #d11242 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
    border: 4px solid #fff;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.btn-festival .small {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
}

.btn-festival-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff3366 0%, #d11242 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(209, 18, 66, 0.2) !important;
    transition: transform 0.3s ease;
}

.btn-festival-cta:hover {
    transform: translateY(-8px);
}

.btn-festival-cta .small {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
}


/* ==========================================================================
   12. Footer Section
   ========================================================================== */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.organizer-info {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.organizer-info a {
    color: #00a4e4;
}

.copyright {
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #334155;
    padding-top: 20px;
}

.footer-dark {
    background: #1e293b;
    color: #f8fafc;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10;
}

.footer-dark-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.footer-dark h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-list.mb-40 {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.footer-link-light {
    color: #38bdf8 !important;
}

.copyright.border-top {
    font-size: 0.9rem;
    color: #94a3b8;
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}


/* ==========================================================================
   13. Responsive (Media Queries)
   ========================================================================== */
/* --- Tablet View (900px max) --- */
@media screen and (max-width: 900px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-card img {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .rally-split-container {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile View (768px max) --- */
@media screen and (max-width: 768px) {
    .pop-title {
        font-size: 2.2rem;
    }
    
    .pop-title-small {
        font-size: 1.6rem;
    }
    
    .ticket-box {
        top: -30px;
    }
    
    .ticket-icon {
        font-size: 3rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
        top: -25px;
    }
    
    .ticket-content p {
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
    
    .rally-card {
        padding: 30px 20px;
    }
    
    .rally-main-title {
        font-size: 1.6rem;
    }
    
    .rally-desc {
        font-size: 1rem;
    }
    
    .rally-status-list li {
        font-size: 1rem;
    }
    
    .day-container {
        padding: 30px 15px;
    }
    
    .performer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .p-img, 
    .no-img-box {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .no-img-box {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .time-badge {
        font-size: 1.1rem;
    }
    
    .p-name {
        font-size: 1rem;
    }
    
    .special-event-box {
        padding: 40px 20px;
    }
    
    .free-ribbon {
        left: -50px;
        font-size: 1rem;
    }
    
    .btn-festival {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .map-container-box {
        padding: 15px;
    }
    
    .map-info h3 {
        font-size: 1.4rem;
    }
    
    .map-info .address {
        font-size: 1rem;
    }

    /* --- Hamburger Menu --- */
    .hamburger {
        display: block;
        position: relative;
        z-index: 1000;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #005a9c;
        border-radius: 3px;
        transition: all 0.3s;
    }
    
    .hamburger span:nth-child(1) {
        top: 0;
    }
    
    .hamburger span:nth-child(2) {
        top: 10px;
    }
    
    .hamburger span:nth-child(3) {
        top: 20px;
    }
    
    .hamburger.is-active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }
    
    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.is-active span:nth-child(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    .global-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        transition: right 0.3s;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .global-nav.is-active {
        right: 0;
    }
    
    .global-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .global-nav a {
        font-size: 1.5rem;
    }

    /* --- Workshop & Marche & Malama --- */
    .workshop-wide-wrapper, 
    .donation-images, 
    .fun-card-wrapper { 
        flex-direction: column; 
        gap: 30px; 
    }
    
    .colored-wrapper {
        padding: 40px 20px;
    }
    
    .fun-img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .image-card img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .workshop-gel-img {
        height: auto;
        max-height: 240px;
        object-fit: contain;
    }
    
    .date-badge-bold {
        font-size: 1.3rem;
        padding: 6px 15px;
    }

    .footer-dark {
        min-height: calc(100vh - 60px);
        display: flex;
        align-items: center;
    }

    .footer-dark-container {
        width: 100%;
    }
}

/* --- Small Mobile View (480px max) --- */
@media screen and (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .performer-grid {
        grid-template-columns: 1fr;
    }
}