/* =========================================
   VENUE SECTION
   ========================================= */
.venue-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.venue-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.venue-info {
    padding-right: 2rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.venue-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.venue-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--accent-bright);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(139, 196, 187, 0.4);
}

.detail-text strong {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.detail-text p {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: 0.1em; /* Matches the wide spacing in the Canva design */
}

/* Map */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: 550px;
    border: 1px solid rgba(0,0,0,0.05);
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    position: relative;
    z-index: 10;
}

.footer p {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 300;
}

/* =========================================
   ROBOT & FLOWERS ANIMATION
   ========================================= */
#robot-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
}

.robot-animation {
    position: absolute;
    bottom: -10px;
    width: 180px;
    height: auto;
    animation: walkBackAndForth 24s linear infinite;
    opacity: 0.9;
}

@keyframes walkBackAndForth {
    0% { left: 1vw; transform: scaleX(1); }
    49% { left: calc(99vw - 180px); transform: scaleX(1); }
    50% { left: calc(99vw - 180px); transform: scaleX(-1); }
    99% { left: 1vw; transform: scaleX(-1); }
    100% { left: 1vw; transform: scaleX(1); }
}

#flowers-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.flower {
    position: absolute;
    top: -50px;
    animation: fall linear forwards;
    opacity: 0.7;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.05));
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

/* =========================================
   LEAFLET CUSTOMIZATIONS
   ========================================= */
.info-window-content {
    font-family: var(--font-sans);
    text-align: center;
    padding: 15px 5px 5px 5px;
}

.info-window-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.map-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    color: #fff !important;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    border: none;
}

.map-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-google { background-color: var(--text-primary); }
.btn-waze { background-color: var(--accent-bright); color: var(--text-primary) !important; font-weight: 600; }

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================================
   POLL SECTION
   ========================================= */
.poll-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    position: relative;
    z-index: 10;
}

.poll-container {
    max-width: 800px;
    margin: 0 auto;
}

.poll-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.poll-question {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poll-btn {
    background: transparent;
    border: 2px solid var(--accent-bright);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    padding: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.poll-btn:hover {
    background: var(--accent-bright);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 196, 187, 0.3);
}

.poll-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.poll-result-item {
    position: relative;
}

.poll-result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    font-weight: 500;
}

.poll-bar-bg {
    width: 100%;
    height: 12px;
    background: #f0f8f7;
    border-radius: 6px;
    overflow: hidden;
}

.poll-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.poll-bar-fill.winner {
    background: var(--text-primary);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .venue-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .venue-info {
        padding-right: 0;
        text-align: center;
    }

    .venue-details-grid {
        align-items: center;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .map-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .countdown-wrapper {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .time {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .countdown-item {
        flex: 1 1 40%;
    }
    
    .time {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .venue-section {
        padding: 5rem 1.5rem;
    }
}

/* =========================================
   ADD TO CALENDAR BUTTON
   ========================================= */
.btn-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
    padding: 16px 36px;
    background: var(--accent-bright);
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(139, 196, 187, 0.4);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.btn-calendar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 196, 187, 0.6);
    background: #7ab3a9;
}

.btn-calendar:hover::before {
    left: 100%;
}

.btn-calendar span {
    position: relative;
    z-index: 1;
}

.btn-calendar svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

