/* index.css */
/* Page wrapper */
.page-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Desktop Navigation Buttons */
.nav-buttons {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Left side buttons */
.left-nav {
    left: calc(5vw + 40px);
}

/* Right side buttons */
.right-nav {
    right: calc(5vw + 40px);
}

/* Create Event Link - positioned to the right of boletucho */
.create-event-link {
    position: absolute;
    top: 60%;
    left: calc(50% + 120px);
    transform: translateY(-50%);
    z-index: 25;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
}

.mobile-nav-left {
    left: 30px;
}

.mobile-nav-right {
    right: 30px;
}

.mobile-nav img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mobile-nav img:hover {
    transform: scale(1.1);
}

/* Content container */
.content-container {
    position: relative;
    padding-top: 155px;
    padding-bottom: 0px;
    flex: 1; /* Allow it to grow and push footer down */
    display: flex;
    flex-direction: column;
}

/* City Context Bar */
.city-bar {
    width: 100%;
    background: #111;
    border-top: 1.5px solid rgba(255,255,255,0.08);
    border-bottom: 1.5px solid rgba(255,255,255,0.08);
    padding: 9px 28px;
    text-align: center;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.city-bar strong {
    font-weight: bold;
    color: #fff;
}

.city-change-link {
    color: #9fbc99;
    text-decoration: none;
    font-weight: bold;
}

.city-change-link:hover {
    text-decoration: underline;
    color: #b8d4b3;
}

/* City change modal input + dropdown */
.city-modal-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 10px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.city-modal-input:focus {
    outline: none;
    border-color: #3a7d44;
}

.city-autocomplete { position: relative; }

.city-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid rgba(0,0,0,0.15);
    border-top: none;
    border-radius: 0 0 10px 10px;
    z-index: 300;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.city-dropdown.open { display: block; }

.city-option {
    padding: 9px 14px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.city-option:last-child { border-bottom: none; }
.city-option:hover, .city-option.highlighted { background: rgba(58,125,68,0.08); }

.modal-button--secondary {
    background: rgba(0,0,0,0.08);
    color: #333;
}

.modal-button--secondary:hover { background: rgba(0,0,0,0.15); }

/* Filter Status Styles */
.filter-status-container {
    width: 100%;
    display: flex;
    z-index: 20;
    position: relative;
    animation: filterSlideIn 0.35s ease-out;
}

.filter-bar {
    width: 100%;
    background: #e8dcc8;
    border-top: 1.5px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
    padding: 9px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 14px;
    color: #5a4f3f;
}

.filter-icon {
    font-size: 14px;
    opacity: 0.7;
}

.filter-text {
    white-space: nowrap;
}

.clear-filter-btn {
    background: rgba(180, 80, 80, 0.85);
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-left: 4px;
}

.clear-filter-btn:hover {
    background: rgba(180, 80, 80, 1);
    transform: scale(1.1);
}

.clear-filter-btn:active {
    transform: scale(0.95);
}

@keyframes filterSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Events Gallery */
.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px 20px 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    position: relative;
    width: 220px;
    height: 300px;
    border-radius: 15px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.event-card-clip {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    overflow: hidden;
}

/* Tape images on top corners */
.tape {
    position: absolute;
    width: 52px;
    z-index: 20;
    pointer-events: none;
    user-select: none;
}

.tape-left {
    top: -15px;
    left: -15px;
}

.tape-right {
    top: -15px;
    right: -15px;
}

.event-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Category Tag Styles */
.event-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'PubliFluor', Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-transform: lowercase;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.event-card:hover .event-category-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Category colors matching create.css */
.event-category-tag.music {
    background: rgba(104, 41, 87, 0.9);
}

.event-category-tag.art {
    background: rgba(103, 185, 169, 0.9);
}

.event-category-tag.social {
    background: rgba(43, 89, 131, 0.9);
}

.event-category-tag.market {
    background: rgba(240, 181, 77, 0.9);
}

.event-category-tag.cultural {
    background: rgba(184, 92, 56, 0.9);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-card:hover .event-poster {
    transform: scale(1.05);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.event-info {
    color: white;
    font-family: 'PubliFluor', Arial, sans-serif;
}

.event-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.event-details {
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.event-link {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

.event-link:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Mobile event info - hidden by default */
.mobile-event-info {
    display: none;
}

/* No events message */
.no-events {
    text-align: center;
    font-family: 'PubliFluor', Arial, sans-serif;
    font-size: 20px;
    color: #fff;
    margin: 40px auto;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
}

.no-events-inner {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Override retro-link inside the dark frosted card */
.no-events-inner .retro-link {
    color: #ddd;
    text-decoration-color: #ddd;
}

.no-events-inner .retro-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 10px 0;
    z-index: 10;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pagination-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-arrow.disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagination-prev img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1); /* Make arrow white */
}

.pagination-next img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1); /* Make arrow white */
    transform: rotate(180deg); /* Flip for right arrow */
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    background: #000;
    color: white;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 0 8px;
}

.pagination-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pagination-number.active {
    background: #333;
    cursor: default;
    transform: none;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pagination-number.active:hover {
    transform: none;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pagination-ellipsis {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 0 4px;
}

/* Footer Banner Styles with Zigzag Effect */
.footer-banner {
    position: relative;
    width: 100%;
    height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 0 20px 18px;
    box-sizing: border-box;
    margin-top: auto;
    flex-shrink: 0;
    clip-path: polygon(
        0% 50%,
        8% 35%,
        16% 50%,
        24% 35%,
        32% 50%,
        40% 35%,
        48% 50%,
        56% 35%,
        64% 50%,
        72% 35%,
        80% 50%,
        88% 35%,
        96% 50%,
        100% 50%,
        100% 100%,
        0% 100%
    );
}

/* Background image layer — filter applied here only so text is unaffected */
.footer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/footer.JPG') no-repeat 50% 40%;
    background-size: cover;
    filter: grayscale(100%) brightness(0.8);
    z-index: 0;
}

.footer-text {
    position: relative;
    z-index: 1;
    color: white;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    line-height: 1.4;
}

.footer-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 28px;
    justify-content: center;
}

.footer-btn {
    color: rgba(255, 255, 255, 0.72);
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.footer-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide desktop navigation, show mobile */
    .nav-buttons,
    .create-event-link {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    /* Adjust banner for mobile */
    .banner-container {
        top: -100px;
        height: 250px;
    }

    .blurb-container {
        width: 150px;
        height: 120px;
    }

    .boletucho-container {
        width: 130px;
        height: 55px;
    }

    /* Content container adjustments for mobile */
    .content-container {
        padding-top: 120px;
        padding-bottom: 0px;
    }

    /* Mobile filter bar adjustments */
    .filter-bar {
        font-size: 13px;
        padding: 10px 16px;
        gap: 8px;
    }

    .filter-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .filter-icon {
        font-size: 13px;
        flex-shrink: 0;
    }

    .clear-filter-btn {
        width: 20px;
        height: 20px;
        font-size: 13px;
        flex-shrink: 0;
    }

    /* Adjust events container for mobile - 2 per row */
    .events-container {
        padding: 0 15px;
        gap: 15px;
    }

    .event-card {
        width: calc(50% - 7.5px);
        height: 280px;
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Flatten wrapper so flex children work as before */
    .event-card-clip {
        display: contents;
    }

    /* Single event: expand to feel balanced instead of squished at 50% */
    .event-card:only-child {
        width: 85%;
        max-width: 300px;
    }

    /* Hide tape on mobile */
    .tape {
        display: none;
    }

    /* Disable hover effects on mobile */
    .event-card:hover .event-overlay {
        opacity: 0;
    }

    .event-card:hover .event-poster {
        transform: none;
    }

    .event-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .event-card:hover .event-category-tag {
        opacity: 0;
        transform: translateY(-10px);
    }

    /* Mobile poster styling */
    .event-poster {
        width: 100%;
        height: 65%;
        object-fit: cover;
        flex-shrink: 0;
        transform: none !important;
    }

    /* Hide desktop overlay and category tag on mobile */
    .event-overlay {
        display: none !important;
    }

    .event-category-tag {
        display: none !important;
    }

    /* Show mobile event info section */
    .mobile-event-info {
        display: flex !important;
        flex-direction: column;
        padding: 12px 10px;
        background: white;
        height: 35%;
        justify-content: center;
        text-align: center;
    }

    .mobile-event-name {
        font-family: 'FluxischElse', Arial, sans-serif;
        font-weight: bold;
        color: #333;
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .mobile-event-location {
        font-family: 'FluxischElse', Arial, sans-serif;
        color: #666;
        font-size: 11px;
        margin-bottom: 4px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .mobile-event-date {
        font-family: 'FluxischElse', Arial, sans-serif;
        color: #666;
        font-size: 11px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    /* Mobile pagination adjustments */
    .pagination-container {
        margin: 15px 0 10px 0;
        padding: 0 20px;
    }

    .pagination {
        gap: 10px;
    }

    .pagination-arrow {
        width: 35px;
        height: 35px;
    }

    .pagination-prev img,
    .pagination-next img {
        width: 14px;
        height: 14px;
    }

    .pagination-number {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 0 6px;
    }

    .pagination-ellipsis {
        font-size: 12px;
    }

    /* Footer banner mobile adjustments */
    .footer-banner {
        height: 145px;
        gap: 6px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-buttons {
        gap: 18px;
    }

    .footer-btn {
        font-size: 11px;
    }

    /* Mobile no-events adjustments */
    .no-events {
        font-size: 18px;
        min-height: 150px;
    }
}

/* Very small mobile screens (iPhone SE, etc.) */
@media (max-width: 400px) {
    .events-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .event-card {
        width: calc(50% - 5px);
        height: 260px;
    }
    
    .mobile-event-name {
        font-size: 12px;
    }
    
    .mobile-event-location,
    .mobile-event-date {
        font-size: 10px;
    }

    .mobile-event-info {
        padding: 10px 8px;
    }

    /* Filter bar adjustments for very small screens */
    .filter-bar {
        font-size: 12px;
        padding: 9px 12px;
    }

    /* Pagination adjustments for very small screens */
    .pagination {
        gap: 6px;
    }

    .pagination-arrow {
        width: 30px;
        height: 30px;
    }

    .pagination-prev img,
    .pagination-next img {
        width: 12px;
        height: 12px;
    }

    .pagination-number {
        min-width: 26px;
        height: 26px;
        font-size: 11px;
        padding: 0 4px;
    }

    .footer-text {
        font-size: 11px;
    }

    /* Very small screen no-events adjustments */
    .no-events {
        font-size: 16px;
        min-height: 120px;
    }
}

/* ============================================================
   CATEGORY PILL BAR
   ============================================================ */
.cat-pill-bar {
    width: 100%;
    background: #e8dcc8;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    border-bottom: 1.5px solid rgba(0,0,0,0.08);
    box-sizing: border-box;
}
.cat-pill-bar::-webkit-scrollbar { display: none; }

.cat-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1.5px solid transparent;
    background: rgba(255,255,255,0.65);
    color: #666;
    flex-shrink: 0;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
    user-select: none;
}
.cat-pill[data-cat="all"].active   { background: #333; color: #fff; }
.cat-pill[data-cat="music"].active    { background: #682957; color: #fff; }
.cat-pill[data-cat="art"].active      { background: #67B9A9; color: #222; }
.cat-pill[data-cat="social"].active   { background: #2B5983; color: #fff; }
.cat-pill[data-cat="market"].active   { background: #d4a030; color: #fff; }
.cat-pill[data-cat="cultural"].active { background: #B85C38; color: #fff; }

.cat-pill-spacer { flex: 1; min-width: 8px; }

.tags-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1.5px solid #bbb;
    background: rgba(255,255,255,0.65);
    color: #666;
    flex-shrink: 0;
    transition: background 0.12s, color 0.12s;
}
.tags-pill.has-tags { background: #333; color: #fff; border-color: #333; }

/* ============================================================
   TAGS BOTTOM SHEET
   ============================================================ */
.tags-sheet-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
}
.tags-sheet-overlay.open { display: block; }

.tags-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #222;
    border-radius: 12px 12px 0 0;
    z-index: 1001;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.tags-sheet.open { transform: translateY(0); }

.tags-sheet-handle {
    width: 36px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 10px auto 4px;
    flex-shrink: 0;
}
.tags-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 18px 10px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.tags-sheet-title {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #333;
}
.tags-sheet-close {
    font-size: 1.3rem;
    color: #bbb;
    cursor: pointer;
    line-height: 1;
}
.tags-sheet-search {
    margin: 10px 18px 0;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.88rem;
    outline: none;
    flex-shrink: 0;
    box-sizing: border-box;
    width: calc(100% - 36px);
}
.tags-sheet-search:focus { border-color: #999; }

.tags-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 18px 6px;
}
.ts-cat-label {
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
    margin-bottom: 7px;
    margin-top: 14px;
}
.ts-cat-label:first-child { margin-top: 0; }
.ts-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.ts-chip {
    padding: 5px 13px;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: background 0.1s, color 0.1s, border-color 0.1s;
    user-select: none;
}
.ts-chip.sel { background: #333; color: #fff; border-color: #333; }

.tags-sheet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}
.ts-clear-btn {
    background: transparent;
    border: none;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.78rem;
    color: #bbb;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.ts-apply-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'FluxischElse', Arial, sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    letter-spacing: 0.3px;
}

/* For larger phones (iPhone Pro Max, etc.) */
@media (min-width: 400px) and (max-width: 480px) {
    .event-card {
        height: 300px;
    }

    /* Fixed poster height for larger phones */
    .event-poster {
        height: 195px; /* Fixed height: 65% of 300px */
    }

    /* Fixed info section height for larger phones */
    .mobile-event-info {
        height: 105px; /* Fixed height: 35% of 300px */
    }
    
    .mobile-event-name {
        font-size: 15px;
    }
    
    .mobile-event-location,
    .mobile-event-date {
        font-size: 12px;
    }
}