/* CSS Reset & Variables */
:root {
    /* Light Forest Palette */
    --color-primary: #2E5C55;
    /* Deep Forest Green */
    --color-secondary: #6B8E23;
    /* Moss Green */
    --color-accent: #C5A059;
    /* Pale Gold - Elegant & Subtle */
    --color-text: #3A3A3A;
    /* Soft Dark Gray */
    --color-text-light: #5F6C68;
    /* Grayish Green tone */
    --color-bg: #F9F8F4;
    /* Top background (Kinari) */
    --color-bg-alt: #EBF0EC;
    /* Very soft green tint for sections */
    --color-bg-grad-end: #F0F4F2;
    /* Bottom background */

    --font-base: "Zen Maru Gothic", sans-serif;

    --container-width: 1000px;
    --header-height: 70px;
    --border-radius: 16px;
    /* Slightly softer */
    --shadow-card: 0 4px 20px rgba(46, 92, 85, 0.06);
    /* Greenish shadow */
    --shadow-float: 0 10px 30px rgba(46, 92, 85, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    /* Subtle vertical gradient: Kinari -> Pale Greenish White */
    background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg-grad-end) 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Komorebi Particles (Subtle light dots) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Very subtle noise/particles */
    background-image:
        radial-gradient(var(--color-accent) 0.5px, transparent 0.5px),
        radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px;
    opacity: 0.2;
    /* Subtle shimmer */
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.8rem;
    /* Slightly smaller, more elegant */
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: 0.05em;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 15px auto 0;
    opacity: 0.7;
}

.section-lead {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    /* Softer rounded rect, not full capsule unless specified */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: none;
    letter-spacing: 0.05em;
}

.btn.large {
    padding: 18px 45px;
    font-size: 1.15rem;
    min-width: 280px;
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
}

.btn.icon-btn {
    padding: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: #254A44;
    /* Darker green */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 92, 85, 0.2);
}

.btn-secondary {
    background: var(--color-secondary);
    /* Moss Green */
    color: white;
}

.btn-secondary:hover {
    background: #55721B;
    /* Darker Moss */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 142, 35, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-secondary);
    /* Thin delicate border */
    color: var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: white;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
}

/* Header */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-nav {
    display: none;
    /* Hidden on mobile initially, visible on desktop */
}

.header-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light Forest Overlay: Readable dark green with localized light */
    background: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.1) 0%, rgba(30, 50, 45, 0.6) 90%);
}

.hero-content {
    z-index: 1;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-catch {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-info-card {
    background: rgba(249, 248, 244, 0.95);
    /* Kinari Translucent */
    color: var(--color-text);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(46, 92, 85, 0.15);
    /* Soft deep shadow */
    text-align: left;
    min-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.info-row {
    display: flex;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-label {
    width: 60px;
    color: var(--color-primary);
    font-weight: normal;
}

.info-value-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-address {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--color-text-light);
    margin-top: 4px;
}

.info-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.info-insta-note {
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-top: 8px;
    font-weight: 500;
}

.info-value.highlight {
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.info-time {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common */
.section {
    padding: 80px 0;
    position: relative;
    /* For leaf shadows */
}

/* Subtle Leaf Shadow/Dappled Light Effect at top of sections */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background:
        radial-gradient(circle at 10% 0%, rgba(46, 92, 85, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 0%, rgba(46, 92, 85, 0.04) 0%, transparent 35%);
    pointer-events: none;
    z-index: -1;
}

.section-colored {
    background-color: var(--color-bg-alt);
}

/* Intro Section */
.testimonial-box {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    margin: 0 auto 40px;
    max-width: 700px;
    text-align: center;
    border-left: 5px solid var(--color-primary);
}

.testimonial-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #FDFCF9;
    /* Off-white card */
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(46, 92, 85, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(46, 92, 85, 0.1);
    /* Thin green border */
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Highlights Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.gallery-note {
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.map-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-block {
    background: #eee;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.placeholder-box {
    background: #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #888;
}

/* Sponsorship Section */
.sponsors-message {
    text-align: center;
    margin-bottom: 40px;
}

.impact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.impact-item {
    text-align: center;
    padding: 20px;
}

.impact-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.plans-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    box-shadow: var(--shadow-card);
    border-radius: var(--border-radius);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
    /* Force scroll on small screens */
}

.plans-table th,
.plans-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.plans-table th {
    background: #f8f8f8;
    color: var(--color-text);
}

.plan-highlight {
    background: #F3F8F5;
    /* Very pale green highlight */
}

.plan-highlight td {
    color: var(--color-primary);
    font-weight: 600;
}

.sponsor-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 50px;
}

.existing-sponsors {
    text-align: center;
}

.accordion-toggle {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 10px;
}

.accordion-content {
    display: none;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 10px;
    border: 1px solid #eee;
}

.accordion-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.accordion-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.accordion-content li {
    background: #f8f8f8;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    /* Keep white for contrast against Kinari bg */
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(46, 92, 85, 0.05);
    /* Softer shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-q {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.faq-a {
    padding-left: 1.5em;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #1F3D38;
    /* Darker Forest Green */
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

footer::before {
    /* Top border gradient */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.credits p {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 5px;
}

/* Instagram Feed Grid */
.insta-feed-wrapper {
    margin-top: 30px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 10px;
    margin-bottom: 30px;
}

.insta-post {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    /* Perfect Square */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-icon {
    font-size: 2rem;
    color: white;
}

.insta-post:hover {
    transform: translateY(-3px);
}

.insta-post:hover img {
    transform: scale(1.1);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-btn-area {
    text-align: center;
}

/* Mobile First -> Desktop Adjustments */
@media (min-width: 768px) {
    .header-nav {
        display: flex;
        gap: 12px;
        margin: 0 10px;
    }

    .header-nav a {
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .btn.small {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .header-cta {
        gap: 10px;
    }

    .experience-cards {
        grid-template-columns: repeat(5, 1fr);
    }

    .hero-catch {
        font-size: 4.5rem;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .sponsor-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .insta-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on desktop */
        gap: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .map-area {
        flex-direction: row;
    }

    .map-block {
        flex: 1;
    }
}

/* About Festa Section */
.about-festa-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
}

.about-info-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
    border: 1px solid rgba(46, 92, 85, 0.05);
}

.experience-list-simple {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.experience-list-simple li {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
}

.experience-list-simple li span {
    color: var(--color-accent);
    margin-right: 5px;
}

.about-expert-note {
    background: rgba(197, 160, 89, 0.05);
    /* Very light gold tint */
    padding: 30px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
    border-left: 4px solid var(--color-accent);
    text-align: left;
}

/* Chairperson Message Section */
.message-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.message-image {
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
}

.message-image img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-float);
    border: 8px solid white;
}

.message-text {
    flex: 1;
}

.message-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.message-points {
    margin: 20px 0 30px 20px;
    padding-left: 0;
}

.message-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 500;
    list-style: none;
    /* Add this to remove default bullets */
}

.message-points li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.message-signature {
    margin-top: 50px;
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.message-signature p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.message-signature .signature-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 10px;
    letter-spacing: 0.2em;
}

/* Sponsor Inquiry Box */
.sponsor-inquiry-box {
    background: white;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-float);
    margin-top: 40px;
    border: 2px dashed rgba(46, 92, 85, 0.1);
}

.inquiry-message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.email-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .message-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .message-image {
        max-width: 300px;
        position: sticky;
        top: 100px;
    }

    .message-text {
        padding-left: 20px;
    }
}

/* Exhibitor Section */
.exhibitor-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.exhibitor-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.exhibitor-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.exhibitor-box {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(46, 92, 85, 0.05);
}

.exhibitor-box h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-bg-alt);
    display: inline-block;
}

.check-list {
    margin: 20px 0;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 12px;
    list-style: none;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0.5rem;
    color: var(--color-secondary);
    font-weight: bold;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.benefit-item {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.benefit-item .icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.exhibitor-testimonial {
    margin-top: 25px;
    padding: 15px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
}

.exhibitor-message-box {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-float);
}

.exhibitor-message-box h3 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.exhibitor-message-box .highlight-text {
    font-size: 1.2rem;
    margin: 25px 0;
    line-height: 1.6;
}

.exhibitor-summary-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-float);
    border: 3px solid var(--color-secondary);
    margin-bottom: 50px;
}

.exhibitor-summary-card h3 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.summary-list {
    margin: 20px 0 30px;
    display: inline-block;
    text-align: left;
}

.summary-list li {
    margin-bottom: 10px;
    list-style: none;
}

.info-session-box {
    background: #fdfcf9;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
}

.info-session-box h3 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.info-session-content,
.info-session-philosophy {
    margin-bottom: 40px;
}

.info-session-content h4,
.info-session-philosophy h4 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.info-session-closing {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-weight: 700;
    color: var(--color-primary);
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .exhibitor-details {
        flex-direction: row;
    }

    .exhibitor-box {
        flex: 1;
    }
}


.exhibitor-visual-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.exhibitor-visual-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Extra Mobile Adjustments */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .header-inner {
        padding: 10px 12px;
    }

    .header-cta {
        gap: 5px;
    }

    .btn.small {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .btn.icon-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .hero-catch {
        font-size: 2.2rem;
    }

    .event-info-card {
        padding: 20px;
        min-width: 100%;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}