.hero {
    text-align: center;
    height: 110vh;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px; /* Match navbar height */
    padding-top: 70px; /* Add padding to compensate for navbar */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-dates {
    font-family: "Audiowide", serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: var(--highlight);
    margin: 20px 0;
    text-shadow: 1px 2px var(--dark);
}

.retro-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: clamp(25px, 5vw, 50px) clamp(25px, 5vw, 50px);
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    z-index: 0;
    pointer-events: none;
}

.cta-button {
    display: inline-block;
    margin-top: clamp(20px, 4vh, 30px);
    padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
    background-color: var(--coral);
    color: var(--light);
    text-decoration: none;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 var(--purple);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--purple);
}

.cta-button:active {
    transform: translate(0, 0);
    box-shadow: 0 0 0 var(--purple);
}

/* Countdown styles for hero integration */
.hero .countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}
  
.hero .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.hero .countdown-num {
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    color: var(--yellow);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px;
    min-width: clamp(45px, 8vw, 60px);
    border-radius: 6px;
    position: relative;
    box-shadow: 3px 3px 0 var(--purple);
    text-align: center;
}
  
.hero .countdown-label {
    margin-top: 6px;
    font-size: clamp(0.6rem, 1.8vw, 0.85rem);
    color: var(--pink);
    text-transform: uppercase;
    font-family: "Audiowide", serif;
    text-shadow: 1px 1px var(--dark);
}

/* Improved Mobile Responsive Styles */
/* @media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        margin-top: -60px; 
        padding-top: 60px;
    }
    
    .hero-content {
        width: 90%;
        padding: 0;
    }
    
    .hero-dates {
        font-size: 1.25rem;
        margin: 10px 0;
    }
    
    .hero .countdown-container {
        width: 100%;
        gap: 8px;
        margin: 12px 0;
    }
    
    .hero .countdown-item {
        flex: 1;
        min-width: 0;
    }
    
    .hero .countdown-num {
        font-size: 1.2rem;
        padding: 6px 4px;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero .countdown-label {
        font-size: 0.6rem;
        margin-top: 4px;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 10px 0;
        padding: 0 10px;
    }
    
    .cta-button {
        margin-top: 15px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: -55px;
        padding-top: 55px;
    }
    
    .hero-content {
        width: 95%;
    }
    
    .hero-dates {
        font-size: 1.1rem;
        margin: 8px 0;
    }
    
    .hero .countdown-container {
        gap: 6px;
        margin: 10px 0;
    }
    
    .hero .countdown-num {
        font-size: 1rem;
        padding: 5px 2px;
        box-shadow: 2px 2px 0 var(--purple);
    }
    
    .hero .countdown-label {
        font-size: 0.55rem;
        margin-top: 3px;
    }
    
    .cta-button {
        margin-top: 12px;
        padding: 7px 18px;
        font-size: 0.8rem;
        box-shadow: 3px 3px 0 var(--purple);
    }
} */
