.big-day-page header,
.big-day-page footer {
    display: none !important;
}

.big-day-wrapper {
    font-family: 'OpenDyslexic', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
    position: relative;
}

.back-home-link {
    display: block;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.back-home-link:hover {
    background: #555;
}

.audio-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    color: #00FF00;
    border: 2px solid #00FF00;
    border-radius: 32px;
    padding: 10px 18px;
    min-width: 44px;
    min-height: 44px;
    font-size: 0.95rem;
    font-weight: bold;
    font-family: 'OpenDyslexic-Bold', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.audio-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.05);
}

.big-day-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 5px solid #4CAF50;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.poster-statement-wrapper {
    font-family: 'Impact', 'OpenDyslexic-Bold', sans-serif;
    font-size: 6rem;
    line-height: 1;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: baseline;
    flex-wrap: wrap;
    text-shadow: 4px 4px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.poster-percent { color: #FF0000; font-size: 1.2em; }
.percent-small { font-size: 0.2em; }
.poster-said { color: #00FF00; font-size: 0.5em; transform: translateY(-10px); }
.poster-no { color: #FF0000; font-size: 1.2em; }

.poster-subtext {
    font-family: 'Impact', 'OpenDyslexic-Bold', sans-serif;
    color: #FFFF00;
    font-size: 2.5rem;
    margin: 5px 0 20px 0;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.cta-section {
    text-align: center;
    background-color: #222;
    padding: 20px 10px;
}

.poster-cta {
    font-family: 'Impact', 'OpenDyslexic-Bold', sans-serif;
    color: #FFAA00;
    font-size: 3rem;
    margin: 20px 0;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.cta-section .poster-cta {
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.2;
}

.hero-banner-inner {
    width: 100%;
}

.vision-section {
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

.section-title {
    font-family: 'OpenDyslexic-Bold', sans-serif;
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

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

.shot-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border-top: 5px solid #2E7D32;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.shot-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(0,0,0,0.05);
    font-family: sans-serif;
    z-index: 1;
    line-height: 1;
}

.shot-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.shot-content {
    padding: 30px;
    text-align: left;
}

.shot-content h3 {
    font-family: 'OpenDyslexic-Bold', sans-serif;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.shot-location {
    color: #2E7D32;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.shot-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.media-carousel-section {
    padding: 10px 0;
    background-color: #222;
    color: white;
    overflow: hidden;
}

.media-carousel-section .section-intro {
    color: #ccc;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
    padding: 0 20px;
}

.carousel-main-title {
    color: #00FF00;
    margin-bottom: 5px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
<<<<<<< ours
<<<<<<< ours
<<<<<<< ours
    gap: 16px;
=======
=======
>>>>>>> theirs
    gap: 20px;
    padding: 10px 50px 20px 50px;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 400px;
    max-width: 85vw;
    scroll-snap-align: center;
}

.media-card {
    background: #333;
    border-radius: 20px;
    overflow: hidden;
<<<<<<< ours
    height: auto;
<<<<<<< ours
    min-height: clamp(600px, 75vh, 880px);
=======
    min-height: clamp(520px, 72vh, 820px);
>>>>>>> theirs
=======
    height: 100%;
<<<<<<< ours
>>>>>>> theirs
=======
    min-height: 600px;
>>>>>>> theirs
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: #00FF00;
}

.poem-card {
    padding: 30px;
    background: linear-gradient(145deg, #2a2a2a, #333);
}

.video-card {
    padding: 20px;
    background: linear-gradient(145deg, #2a2a2a, #333);
}

.media-title {
    font-family: 'OpenDyslexic-Bold', sans-serif;
    font-size: 1.5rem;
    color: #00FF00;
    margin-bottom: 5px;
    text-align: center;
    padding: 0 0 10px 0;
}

.media-subtitle {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
}

.audio-player {
    margin-bottom: 20px;
    text-align: center;
}

.audio-player audio {
    width: 100%;
    max-width: 100%;
}

.poem-scroll-content,
.media-scroll-content {
<<<<<<< ours
<<<<<<< ours
    max-height: none;
    overflow: visible;
    padding-right: 0;
=======
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding-right: 10px;
<<<<<<< ours
>>>>>>> theirs
=======
>>>>>>> theirs
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: #555 #333;
=======
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    text-align: left;
>>>>>>> theirs
    margin-top: 15px;
}

.poem-scroll-content p,
.media-scroll-content p {
    margin-bottom: 12px;
    line-height: 1.45;
    color: #ddd;
    font-size: 0.9rem;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
}

.carousel-nav {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.3);
    color: #00FF00;
}

.carousel-nav.prev { left: 10px; margin: 0; }
.carousel-nav.next { right: 10px; margin: 0; }

.swipe-hint {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.details-section {
    padding: 10px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.details-card {
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    position: relative;
}

.poster-title-small {
    font-family: 'Impact', 'OpenDyslexic-Bold', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #222;
    color: #00FF00;
    padding: 10px;
    border-radius: 8px;
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.time-val {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: monospace;
    line-height: 1;
}

.time-label {
    font-size: 0.6rem;
    color: #aaa;
    margin-top: 5px;
}

.date-tba-note {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Impact', sans-serif;
    letter-spacing: 1px;
}

.details-grid-compact {
    margin-bottom: 25px;
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.detail-row:last-child { margin-bottom: 0; }
.detail-row .icon { font-size: 1.2rem; }
.detail-row .text { font-weight: bold; }

.action-buttons-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-modern {
    flex: 1;
    padding: 12px;
    border: 2px solid #333;
    background: transparent;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'OpenDyslexic-Bold', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-modern:hover {
    background: #333;
    color: #fff;
}

.map-btn-modern { border-color: #2196F3; color: #2196F3; }
.map-btn-modern:hover { background: #2196F3; color: #fff; }

.share-btn-modern { border-color: #FF9800; color: #FF9800; }
.share-btn-modern:hover { background: #FF9800; color: #fff; }

.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.modal-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

.modal-content {
    max-width: 100vw;
    max-height: 100dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    border: 2px solid #fff;
    padding-bottom: 4px;
}

.close-modal:hover,
.close-modal:focus {
    background: rgba(255,0,0,0.8);
    text-decoration: none;
    cursor: pointer;
}

.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s, background 0.3s;
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.5);
}

.shot-image:hover .fullscreen-btn {
    opacity: 1;
    background: rgba(0,0,0,0.8);
}

.supporting-groups-section {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    color: white;
    border-top: 1px solid #333;
}

.supporting-groups-section .section-title {
    color: #fff;
}

.supporting-groups-section p {
    color: #555;
    font-style: italic;
}

.supporting-placeholder {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .poster-statement-wrapper { font-size: 2.5rem; gap: 5px; flex-wrap: wrap; justify-content: center; }
    .poster-subtext { font-size: 1.2rem; margin-bottom: 10px; }
    .poster-cta { font-size: 1.4rem; margin: 10px 0; line-height: 1.2; }

    .hero-overlay-content { padding: 30px 10px; }

    .carousel-wrapper { padding: 0; }
    .carousel-nav { display: none; }
    .carousel-container { padding-left: 20px; padding-right: 20px; padding-top: 20px; padding-bottom: 40px; }

    .carousel-slide { width: 90vw; }
    .media-card { min-height: auto; }

=======
>>>>>>> theirs
=======
>>>>>>> theirs
    .details-card { padding: 20px 15px; }
    .poster-title-small { font-size: 1.5rem; }
    .time-val { font-size: 1.2rem; }
    .time-unit { min-width: 50px; padding: 5px; }

    .hero-image-wrapper { min-height: auto; }

    .audio-toggle-btn {
        top: 60px;
        right: 10px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}
