/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    background-color: var(--color-background);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    padding: var(--space-xl);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    color: var(--color-primary-light);
    text-align: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: var(--space-2xl);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.cd-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    min-width: 90px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cd-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--space-xs);
    color: #fff;
}

.cd-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Action Cards Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .actions-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }
}

.action-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    color: #fff;
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.action-card:hover::before {
    left: 200%;
}

.action-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(183, 110, 121, 0.4);
    transition: transform var(--transition-spring);
}

.action-card:hover .action-icon {
    transform: scale(1.15) rotate(5deg);
}

.action-icon svg {
    width: 18px;
    height: 18px;
}

.action-title {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Location Dropdown */
.location-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.location-dropdown {
    position: absolute;
    top: calc(100% + var(--space-sm));
    right: 0;
    transform: translateY(10px);
    width: 250px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xs);
    opacity: 0;
    display: none;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
    color: var(--color-text-primary);
}

.location-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 40px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}

.location-item {
    display: block;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: background var(--transition-fast);
    text-align: left;
}

.location-item:hover {
    background: var(--color-background);
}

.location-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border-light);
}

.location-name {
    font-weight: 600;
    font-size: var(--text-sm);
    display: block;
    margin-bottom: 2px;
    color: var(--color-primary-dark);
}

.location-date {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s infinite ease-in-out;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .cd-box {
        min-width: 70px;
        padding: var(--space-sm) var(--space-md);
    }

    .cd-number {
        font-size: var(--text-xl);
    }

    .actions-grid {
        gap: var(--space-sm);
    }

    .action-card {
        padding: var(--space-md) var(--space-sm);
    }
}