* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.header {
    background: linear-gradient(135deg, #0066b2 0%, #004c8c 100%);
    color: white;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

/* Animated shine effect */
.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.15) 50%,
        transparent 70%
    );
    animation: headerShine 6s linear infinite;
}

@keyframes headerShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.header .logo {
    position: relative;
    z-index: 2;
}

.header .logo-subtitle {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 4px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.chyron {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #1a1a1a;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-top: 2px solid #ffb300;
    border-bottom: 2px solid #ff9800;
}

.chyron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: shimmer 2s linear infinite;
}

.chyron-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.banner {
    background: linear-gradient(135deg, #e31c38 0%, #b91d2f 50%, #8b1623 100%);
    color: white;
    text-align: center;
    padding: 50px 16px 60px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Animated gradient overlay */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    animation: bannerShine 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes bannerShine {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50%);
    }
}

/* Subtle pattern overlay */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0,0,0,0.05) 0%, transparent 50%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.banner-text {
    margin-top: 20px;
}

.banner-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    text-shadow: 
        3px 3px 6px rgba(0,0,0,0.4),
        0 0 20px rgba(255,255,255,0.2);
    animation: titlePulse 3s ease-in-out infinite alternate;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

@keyframes titlePulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.card-holder {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.membership-card {
    width: 90%;
    max-width: 337.5px;
    height: 213px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        0 8px 40px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    
    border: 1px solid rgba(255,255,255,0.1);
    
    transform: perspective(1000px) rotateX(5deg) rotateY(-2deg);
    transition: all 0.3s ease;
}

/* Desktop hover */
@media (hover: hover) {
    .membership-card:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
        box-shadow: 
            0 6px 30px rgba(0,0,0,0.5),
            0 12px 50px rgba(0,0,0,0.3),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    
    .membership-card:hover::before {
        left: 100%;
    }
}

/* Mobile tap animation */
@media (hover: none) {
    .membership-card:active {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(0.98);
        box-shadow: 
            0 2px 15px rgba(0,0,0,0.4),
            0 4px 25px rgba(0,0,0,0.2);
    }
    
    /* Trigger sheen on tap */
    .membership-card:active::before {
        animation: mobileSheenTap 0.6s ease;
    }
}

/* Glossy gleam effect */
.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 2;
}

@keyframes mobileSheenTap {
    0% {
        left: -100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 1;
    }
}

/* Card content styling */
.membership-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.content-section {
    background: white;
    margin: 20px 16px;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-header {
    background-color: #0066b2;
    color: white;
    padding: 8px 12px;
    margin: -24px -24px 20px -24px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.party-info {
    margin-bottom: 16px;
    position: relative;
}

.directions-button {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
background-color: #0066b2;
color: white;
border: none;
border-radius: 50%;
width: 52px;
height: 52px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 2px 8px rgba(0, 102, 178, 0.4);
transition: all 0.2s ease;
}

.directions-button::after {
content: '›';
font-size: 60px;
line-height: 0.5;
font-weight: 1000;
position: relative;
top: -6px;
right: -2px;
}

.directions-button:hover {
background-color: #004c8c;
transform: translateY(-50%) scale(1.05);
}


.info-label {
    color: #0066b2;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #333;
    font-size: 18px;
    margin-bottom: 16px;
    padding: 8px 0;
    border-bottom: 2px solid #f0f0f0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.photo-placeholder {
    aspect-ratio: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 40px;
    overflow: hidden;
}

.photo-placeholder span {
    font-size: 11px;
    margin-top: 8px;
}

.bulk-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 16px;
    margin: 20px 16px;
    border-radius: 8px;
    text-align: center;
}

.bulk-notice p {
    color: #856404;
    font-size: 14px;
    font-weight: bold;
    margin: 4px 0;
}

.footer {
    background-color: #333;
    color: white;
    padding: 24px 16px;
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
}

.footer p {
    margin: 8px 0;
    line-height: 1.5;
}

#map {
    height: 300px;
    width: 100%;
    border-radius: 8px;
    z-index: 1;
}

.leaflet-container {
    background-color: #cce7f0 !important;
}

.custom-marker {
    width: 70px;
    height: 70px;
    position: relative;
}

.marker-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e31c38;
    box-shadow: 0 4px 12px rgba(227, 28, 56, 0.6);
    overflow: hidden;
    background: white;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.marker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marker-point {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #e31c38;
    filter: drop-shadow(0 3px 6px rgba(227, 28, 56, 0.4));
}

.marker-hotdog {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.leaflet-control-attribution {
    font-size: 9px !important;
}

.calendar-button {
    display: block;
    padding: 12px 24px;
    background-color: #0066b2;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 102, 178, 0.4);
    transition: all 0.2s ease;
    cursor: pointer;
    margin: 16px auto 0 auto;
    text-align: center;
}

.calendar-button:hover {
    background-color: #004c8c;
    transform: scale(1.05);
}

.hotdog-container {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.hotdog-emoji {
    font-size: 48px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
}

.hotdog-emoji:hover {
    transform: scale(1.1);
}

.hotdog-pin {
    position: relative;
    width: 50px;
    height: 70px;
}

.hotdog-pin .hotdog-emoji {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    pointer-events: none;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@900&display=swap');
.costco-style {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 52px;
    letter-spacing: -5px;
    color: #FF0000;
    text-transform: uppercase;
    
    text-shadow: 
        2px 0 white,
       -2px 0 white,
        0 2px white,
        0 -2px white,
        1px 1px white,
       -1px -1px white,
        1px -1px white,
       -1px 1px white;
}