/* Variables */
:root {
    /* Colors */
    --color-bg: #f9f9f9;
    /* Slightly darker bg to make white cards pop */
    --color-bg-sub: #f9f9f9;
    --color-bg-accent-light: #f4efe9;
    /* 少し温かみのある薄いベージュ */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-accent: #d4a373;
    /* Warm Brown/Beige */
    --color-accent-hover: #b08d55;
    --color-bg-alt: #ffffff;
    --color-border: #eeeeee;
    --color-white: #ffffff;

    /* Fonts */
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-section: 100px;
    /* PC default */
    --spacing-section-sp: 60px;
    /* SP default */
    --container-width: 1120px;
    --container-padding: 24px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-base: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    --gradient-primary: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --gradient-text: linear-gradient(45deg, #FF8008, #FFC837);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fdfbf7;
    /* Warm off-white background */
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 200, 55, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(253, 160, 133, 0.2) 0px, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.4;
}

.en-font {
    font-family: var(--font-en);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

@media (max-width: 768px) {
    .section {
        padding-block: var(--spacing-section-sp);
    }
}

/* Common Components */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-ja);
    border: none;
}

.btn-primary {
    background-image: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(253, 160, 133, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 160, 133, 0.6);
}

.site-header {
    background-color: var(--color-white);
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.logo {
    width: 100px;
    /* Slightly smaller for header balance */
}

.logo a {
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Navigation */
.site-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    position: relative;
    font-family: var(--font-en);
}

.nav-list a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-list a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid var(--color-accent);
    transition: var(--transition-base);
}

.btn-nav:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: var(--transition-base);
}

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

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: block;
        /* Override display: none */
    }

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

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .nav-list a {
        font-size: 1.2rem;
        color: var(--color-text);
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

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

/* ... (rest of the file) ... */

/* Footer */
.site-footer {
    background-color: #333;
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    width: 150px;
    margin: 0 auto 30px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: var(--font-en);
}

.section-title-ja {
    font-size: 2rem;
    margin-bottom: 8px;
}

.section-title-en {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .section-title-ja {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    /* Reduced height since header is separate */
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Darken for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .d-block {
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 3rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;

        br {
            display: none;
        }
    }
}

/* About Section */
.about-section {
    background-color: var(--color-bg-accent-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.about-text {
    flex: 1;
}

.about-lead {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-lead {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
    }
}

/* Service Lines Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-desc {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.service-features {
    text-align: left;
    background: var(--color-bg-sub);
    padding: 20px;
    border-radius: var(--radius-md);
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 1.5em;
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: "●";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 0.8em;
    top: 0.2em;
}

.service-features li:last-child {
    margin-bottom: 0;
}

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

/* Target Section */
.target-section {
    background-color: var(--color-bg-accent-light);
}

.target-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.target-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.target-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1rem;
    flex-shrink: 0;
}

.target-text {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .target-list {
        padding: 30px;
    }

    .target-text {
        font-size: 1rem;
    }
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 200px;
    background-color: #eee;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.event-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.event-content {
    padding: 20px;
}

.event-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-info {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-ja);
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline:hover {
    background-image: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(253, 160, 133, 0.4);
    transform: translateY(-2px);
}

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

/* Safety Section */
.safety-section {
    background-color: var(--color-bg-accent-light);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.safety-item {
    text-align: center;
    background: var(--color-white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.safety-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.safety-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

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

/* Roles Section */
.roles-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.role-card {
    flex: 1;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.role-header {
    padding: 30px;
    text-align: center;
    background-color: var(--color-bg-sub);
    border-bottom: 1px solid #eee;
}

.role-title {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.role-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
}

.role-body {
    padding: 40px 30px;
}

.role-list {
    margin-bottom: 30px;
}

.role-list li {
    margin-bottom: 12px;
    padding-left: 1.5em;
    position: relative;
}

.role-list li::before {
    content: "✔";
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.role-message {
    text-align: center;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .roles-container {
        flex-direction: column;
        gap: 24px;
    }
}

/* Flow Section */
.flow-section {
    background-color: var(--color-bg-accent-light);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step-number {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 163, 115, 0.2);
    /* Accent color with low opacity */
    line-height: 1;
    margin-bottom: -15px;
    position: relative;
    z-index: 0;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.step-arrow {
    width: 40px;
    height: 2px;
    background-color: #ddd;
    margin-top: 40px;
    position: relative;
}

.step-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-arrow {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .step-arrow::after {
        right: -3px;
        top: auto;
        bottom: 0;
        transform: rotate(135deg);
    }

    .flow-step {
        width: 100%;
        padding-bottom: 10px;
    }
}

/* Form Section */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
    background-color: #fcfcfc;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    width: 100%;
    max-width: 300px;
    font-size: 1.1rem;
    padding: 16px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
}

/* Form Validation & States */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ff6b6b;
    background-color: #fff5f5;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.form-group.has-error .error-message {
    display: block;
}

.form-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #c3e6cb;
    display: none;
}

.form-success-message.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer */
.site-footer {
    background-color: #4a4036;
    /* Warm Dark Brown */
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make logo white */
    opacity: 0.9;
}

.footer-concept {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links {
    text-align: right;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    font-family: var(--font-en);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-right: 5px;
}

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

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
    font-family: var(--font-en);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

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

/* =========================================
   Event Pages
   ========================================= */

/* Page Hero (Common) */
.page-hero {
    background-color: var(--color-bg-alt);
    padding: 80px 0 40px;
    text-align: center;
}

.page-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
}

/* Event List */
.event-link {
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.event-link:hover .event-title {
    color: var(--color-accent);
}

/* Event Detail Hero */
.event-hero {
    position: relative;
    color: var(--color-white);
    background-color: #333;
    /* Fallback */
}

.event-hero-bg {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.event-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.event-hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 40px 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-hero-tag {
    display: inline-block;
    background-image: var(--gradient-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(253, 160, 133, 0.4);
}

.event-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Event Detail Content */
.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.event-main {
    min-width: 0;
    /* Prevent grid blowout */
}

.event-description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-bg-alt);
}

.event-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.event-gallery img {
    width: 100%;
    border-radius: var(--radius-md);
}

/* Sidebar */
.event-info-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info-list dt {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.info-list dd {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-list dd:last-of-type {
    border-bottom: none;
}

.info-cta {
    text-align: center;
    margin-top: 20px;
}

.info-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 10px;
}

.event-footer-nav {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-hero-bg {
        height: 300px;
    }

    .event-hero-title {
        font-size: 1.5rem;
    }

    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .event-info-card {
        position: static;
        margin-top: 40px;
    }
}

/* Footer Legal Links */
.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer-legal-links li {
    display: inline-block;
}

.footer-legal-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.75rem;
}

.footer-legal-links a:hover {
    color: #fff;
}