/**
 * Coming Soon Page Styles
 *
 * @package High_Heat_Theme
 * @since 1.0.0
 */

/* Coming Soon Page Layout */
.coming-soon-page {
    margin: 0;
    padding: 0;
    position: relative;
    background: #000;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    color: var(--light-text);
    overflow: hidden;
}

/* Letterbox bars (top and bottom) */
.coming-soon-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background:
        linear-gradient(180deg,
            transparent 0%,
            transparent 33.33%,
            rgba(255, 107, 0, 0.01) 40%,
            rgba(255, 107, 0, 0.02) 46.67%,
            rgba(255, 107, 0, 0.04) 53.33%,
            rgba(255, 107, 0, 0.06) 60%,
            rgba(255, 107, 0, 0.09) 66.67%,
            rgba(255, 120, 20, 0.13) 73.33%,
            rgba(255, 140, 60, 0.18) 78.67%,
            rgba(255, 160, 80, 0.25) 83.33%,
            rgba(255, 180, 100, 0.35) 88%,
            rgba(255, 200, 130, 0.48) 92%,
            rgba(255, 215, 160, 0.62) 94.67%,
            rgba(255, 230, 190, 0.75) 96.67%,
            rgba(255, 240, 210, 0.85) 98%,
            rgba(255, 250, 235, 0.93) 99%,
            rgba(255, 255, 255, 1) 99.67%,
            rgba(255, 255, 255, 1) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.04) 3px,
            rgba(255, 255, 255, 0.04) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.6) 3px,
            rgba(0, 0, 0, 0.6) 4px
        ),
        radial-gradient(
            ellipse at 30% 50%,
            rgba(255, 107, 0, 0.03) 0%,
            transparent 50%
        ),
        linear-gradient(
            180deg,
            #050200 0%,
            #0a0502 50%,
            #100804 100%
        );
    z-index: 3;
}

.coming-soon-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background:
        linear-gradient(0deg,
            transparent 0%,
            transparent 33.33%,
            rgba(255, 107, 0, 0.01) 40%,
            rgba(255, 107, 0, 0.02) 46.67%,
            rgba(255, 107, 0, 0.04) 53.33%,
            rgba(255, 107, 0, 0.06) 60%,
            rgba(255, 107, 0, 0.09) 66.67%,
            rgba(255, 120, 20, 0.13) 73.33%,
            rgba(255, 140, 60, 0.18) 78.67%,
            rgba(255, 160, 80, 0.25) 83.33%,
            rgba(255, 180, 100, 0.35) 88%,
            rgba(255, 200, 130, 0.48) 92%,
            rgba(255, 215, 160, 0.62) 94.67%,
            rgba(255, 230, 190, 0.75) 96.67%,
            rgba(255, 240, 210, 0.85) 98%,
            rgba(255, 250, 235, 0.93) 99%,
            rgba(255, 255, 255, 1) 99.67%,
            rgba(255, 255, 255, 1) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.04) 3px,
            rgba(255, 255, 255, 0.04) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.6) 3px,
            rgba(0, 0, 0, 0.6) 4px
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(255, 107, 0, 0.03) 0%,
            transparent 50%
        ),
        linear-gradient(
            0deg,
            #050200 0%,
            #0a0502 50%,
            #100804 100%
        );
    z-index: 3;
}

/* Background area (between letterbox bars) */
.coming-soon-background {
    position: absolute;
    top: 150px;
    bottom: 150px;
    left: 0;
    right: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 107, 0, 0.15) 0%,
            rgba(255, 107, 0, 0.08) 15%,
            rgba(255, 107, 0, 0.03) 25%,
            transparent 33.33%,
            transparent 66.66%,
            rgba(255, 107, 0, 0.03) 75%,
            rgba(255, 107, 0, 0.08) 85%,
            rgba(255, 107, 0, 0.15) 100%
        ),
        #050505;
    z-index: 1;
}

/* Glowing orange border lines - top edge */
.coming-soon-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 4px 1px rgba(255, 255, 255, 1),
        0 0 8px 2px rgba(255, 230, 200, 0.9),
        0 0 16px 4px rgba(255, 180, 100, 0.8),
        0 0 32px 8px rgba(255, 140, 60, 0.6),
        0 0 50px 12px rgba(255, 107, 0, 0.4),
        0 0 80px 20px rgba(255, 107, 0, 0.2),
        0 0 120px 30px rgba(255, 107, 0, 0.1);
    z-index: 5;
}

/* Glowing orange border lines - bottom edge */
.coming-soon-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 4px 1px rgba(255, 255, 255, 1),
        0 0 8px 2px rgba(255, 230, 200, 0.9),
        0 0 16px 4px rgba(255, 180, 100, 0.8),
        0 0 32px 8px rgba(255, 140, 60, 0.6),
        0 0 50px 12px rgba(255, 107, 0, 0.4),
        0 0 80px 20px rgba(255, 107, 0, 0.2),
        0 0 120px 30px rgba(255, 107, 0, 0.1);
    z-index: 5;
}



.coming-soon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 150px 20px;
    z-index: 2;
}

/* Grid texture overlay */
.coming-soon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 107, 0, 0.03) 10px, rgba(255, 107, 0, 0.03) 11px),
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255, 107, 0, 0.03) 10px, rgba(255, 107, 0, 0.03) 11px);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

/* Radial gradient glow */
.coming-soon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.coming-soon-container {
    max-width: 100%;
    width: 100%;
    margin: 0 50px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Column - Branding */
.coming-soon-left {
    text-align: left;
}

.coming-soon-left-wrapper {
    max-width: 420px;
    text-align: center;
    margin: 0 auto;
}

/* Logo */
.coming-soon-logo {
    margin-bottom: 20px;
}

.coming-soon-logo img {
    max-width: 280px;
    height: auto;
}

.coming-soon-logo h1 {
    font-family: 'Teko', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

/* Main Content */
.coming-soon-content {
    margin-bottom: 25px;
}

.coming-soon-title {
    font-family: 'Teko', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 10px 0;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
    line-height: 1;
}

.coming-soon-subtitle {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--light-text);
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-soon-description {
    max-width: 500px;
}

.coming-soon-description p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0 0 10px 0;
    font-weight: 300;
}

/* Right Column - Contact Info */
.coming-soon-right {
    text-align: left;
}

.coming-soon-right-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info */
.coming-soon-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 0, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.coming-soon-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.6;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    position: relative;
}

.contact-icon {
    display: none;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
}

.contact-text strong {
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-text span {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--light-text);
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Social Links */
.coming-soon-social {
    margin-bottom: 0;
}

.social-center-wrapper {
    width: fit-content;
    text-align: center;
    margin: 0 auto;
}

.coming-soon-social p {
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    color: var(--light-text);
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

/* Admin Preview Notice */
.admin-preview-notice {
    position: fixed;
    bottom: 40px;
    left: 40px;
    right: 250px;
    max-width: 700px;
    padding: 14px 18px;
    background: rgba(240, 173, 78, 0.2);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    z-index: 10;
}

.admin-preview-notice a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.admin-preview-notice a:hover {
    color: #fff;
}

/* Admin Login Section */
.admin-login-section {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.admin-login-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: none;
    opacity: 0.5;
}

.admin-login-trigger svg {
    width: 16px;
    height: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.admin-login-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 0, 0.5);
    color: #ffffff;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

.admin-login-trigger:hover svg {
    opacity: 1;
}

/* Admin Login Modal */
.admin-login-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.admin-login-modal-content {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    margin: 10% auto;
    padding: 40px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

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

.admin-login-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.admin-login-close:hover,
.admin-login-close:focus {
    color: var(--primary-color);
}

.admin-login-modal-content h3 {
    margin: 0 0 30px 0;
    color: var(--primary-color);
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-form-group input[type="text"],
.login-form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--light-text);
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form-group input[type="text"]:focus,
.login-form-group input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.login-form-group input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.login-form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    text-transform: none;
    font-weight: 400;
    color: var(--gray-text);
    cursor: pointer;
}

.login-error-message {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: rgba(214, 54, 56, 0.1);
    border: 1px solid rgba(214, 54, 56, 0.3);
    border-radius: 6px;
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
}

.admin-login-submit {
    width: 100%;
    padding: 14px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-login-submit:hover:not(:disabled) {
    background: #ff7a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.admin-login-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Coming Soon Events Header */
.coming-soon-events-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 24px 4px 24px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 0, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    margin: 0 auto 20px auto;
}

.coming-soon-events-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.6;
}

.coming-soon-events-title {
    font-family: 'Teko', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    line-height: 1;
}

/* Coming Soon Event Cards Carousel */
.coming-soon-events-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1000px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.coming-soon-event-card {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: calc(50% - 9px);
    height: 420px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition:
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        z-index 0s linear 0s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Position states for carousel */
.coming-soon-event-card[data-position="center"] {
    left: 50%;
    top: 0;
    z-index: 3;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: brightness(1);
    border-color: rgba(255, 107, 0, 0.35);
}

.coming-soon-event-card[data-position="center"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: 9;
}

.coming-soon-event-card[data-position="center"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 1;
    z-index: 10;
}

.coming-soon-event-card[data-position="left"] {
    left: 0;
    top: 0;
    z-index: 3;
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: brightness(1);
    border-color: rgba(255, 107, 0, 0.35);
}

.coming-soon-event-card[data-position="left"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: 9;
}

.coming-soon-event-card[data-position="left"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 1;
    z-index: 10;
}

.coming-soon-event-card[data-position="right"] {
    left: 0;
    top: 0;
    z-index: 3;
    opacity: 1;
    transform: translateX(calc(100% + 18px)) scale(1);
    filter: brightness(1);
    border-color: rgba(255, 107, 0, 0.35);
}

.coming-soon-event-card[data-position="right"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: 9;
}

.coming-soon-event-card[data-position="right"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 1;
    z-index: 10;
}

.coming-soon-event-card[data-position="back"] {
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0.8;
    transform: translateX(calc(100% + 18px + 50%)) scale(0.75);
    filter: brightness(0.75);
    border-color: rgba(255, 107, 0, 0.3);
}

.coming-soon-event-card[data-position="hidden"] {
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0.8;
    transform: translateX(-55%) scale(0.75);
    filter: brightness(0.75);
    border-color: rgba(255, 107, 0, 0.3);
}

.coming-soon-event-card[data-position="off-screen"] {
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    transform: translateX(calc(300% + 150%)) scale(0.5);
    filter: brightness(0.5);
}


.coming-soon-event-card .event-image {
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.coming-soon-event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coming-soon-event-card:hover .event-image img {
    transform: scale(1.05);
}

.coming-soon-event-card .event-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
}

.coming-soon-event-card .event-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    z-index: 1;
}

.coming-soon-event-card .event-countdown {
    margin-top: auto;
    margin-bottom: 10px;
}

.coming-soon-event-card .event-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.coming-soon-event-card .event-date-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.coming-soon-event-card .event-date-badge .event-day {
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.coming-soon-event-card .event-date-badge .event-month {
    font-family: 'Teko', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-event-card .event-title-time {
    flex: 1;
}

.coming-soon-event-card .event-time {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: var(--gray-text);
}

.coming-soon-event-card .event-time .time-icon {
    font-size: 14px;
}

.coming-soon-event-card .event-title-time h3 {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.1;
}

.coming-soon-event-card .event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.coming-soon-event-card .event-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-event-card .event-countdown {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 6px;
    padding: 8px 10px;
}

.coming-soon-event-card .countdown-label-top {
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 4px;
}

.coming-soon-event-card .countdown-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.coming-soon-event-card .countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}


.coming-soon-event-card .countdown-number {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.coming-soon-event-card .countdown-unit {
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    font-weight: 500;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.coming-soon-event-card .countdown-separator {
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 107, 0, 0.5);
    line-height: 1;
    margin: 0 1px;
}

.coming-soon-event-card .countdown-separator-invisible {
    color: rgba(0, 0, 0, 0.3);
}

.coming-soon-event-card .countdown-message {
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Category Badge (on event card image) */
.event-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-family: 'Teko', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* View Details Button */
.event-view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 7px 12px;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 5px;
    color: var(--primary-color);
    font-family: 'Teko', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-view-details-btn svg {
    width: 12px;
    height: 12px;
}

.event-view-details-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Event Details Modal */
.event-details-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.event-details-modal-content {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    margin: 3% auto;
    padding: 0;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

.event-details-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.event-details-close:hover,
.event-details-close:focus {
    color: var(--primary-color);
}

/* Event Modal Layout */
.event-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.event-modal-left {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.event-modal-right {
    padding: 40px;
}

/* Event Modal Image */
.event-modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.event-modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-category-badge {
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    margin-top: 0;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: 20px;
    font-family: 'Teko', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Event Modal Map Section */
.event-modal-map {
    padding: 30px;
}

.event-modal-map h4 {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 10px 0;
}

.event-modal-map p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--gray-text);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* Hide Google Maps attribution text */
.map-container .gm-style-cc,
.map-container .gm-style a[href^="https://maps.google.com/maps"],
.map-container a[href^="https://www.google.com/intl"] {
    display: none !important;
}

.map-container .gmnoprint:not(.gm-bundled-control) {
    display: none !important;
}

/* Get Directions Button */
.get-directions-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(255, 107, 0, 0.6);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Teko', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.get-directions-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
}

.get-directions-btn svg {
    stroke: var(--primary-color);
}

/* Event Modal Header */
.event-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.event-modal-date-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.modal-event-day {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.modal-event-month {
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.event-modal-title-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Event Modal Time */
.event-modal-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 18px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--light-text);
    font-weight: 500;
}

.event-modal-time svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Event Modal Description */
.event-modal-description {
    margin-bottom: 30px;
}

.event-modal-description h3 {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 15px 0;
}

.event-modal-description p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0;
}

/* Add to Calendar Button */
.add-to-calendar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-calendar-btn:hover {
    background: #ff7a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.add-to-calendar-btn svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coming-soon-page {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    /* Remove letterbox bars on mobile */
    .coming-soon-page::before,
    .coming-soon-page::after {
        display: none;
    }

    .coming-soon-background {
        top: 0;
        bottom: 0;
    }

    .coming-soon-wrapper {
        height: auto;
        padding: 40px 20px;
    }

    .coming-soon-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .coming-soon-left,
    .coming-soon-right {
        text-align: center;
    }

    .coming-soon-description {
        max-width: 100%;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Event carousel adjustments on mobile */
    .coming-soon-events-header {
        padding: 16px 20px;
    }

    .coming-soon-events-title {
        font-size: 24px;
    }

    .coming-soon-events-carousel {
        height: 500px;
    }

    .coming-soon-event-card {
        width: 80%;
    }

    .coming-soon-event-card[data-position="left"] {
        left: 10%;
        right: auto;
    }

    .coming-soon-event-card[data-position="right"] {
        left: 10%;
        right: auto;
        top: 60px;
        z-index: 1;
        opacity: 0.7;
        transform: scale(0.9);
    }

    .coming-soon-event-card[data-position="back"] {
        display: none;
    }

    .admin-preview-notice {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 30px;
    }

    .admin-login-section {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        text-align: center;
    }

    /* Modal responsive adjustments */
    .event-modal-layout {
        grid-template-columns: 1fr;
    }

    .event-modal-left {
        border-radius: 12px 12px 0 0;
    }

    .event-modal-right {
        padding: 30px 25px;
    }

    .event-modal-header {
        gap: 15px;
    }

    .event-modal-date-badge {
        width: 70px;
        height: 70px;
    }

    .modal-event-day {
        font-size: 28px;
    }

    .modal-event-month {
        font-size: 14px;
    }

    .event-modal-title-section h2 {
        font-size: 26px;
    }

    .event-details-modal-content {
        margin: 5% auto;
    }
}

@media (max-width: 768px) {
    .coming-soon-logo img {
        max-width: 180px;
    }

    .coming-soon-logo h1 {
        font-size: 42px;
    }

    .coming-soon-title {
        font-size: 38px;
    }

    .coming-soon-subtitle {
        font-size: 16px;
    }

    .coming-soon-description p {
        font-size: 14px;
    }

    .coming-soon-contact {
        gap: 12px;
        padding: 20px;
    }

    .contact-icon {
        font-size: 24px;
        min-width: 35px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .admin-login-modal-content {
        margin: 15% auto;
        padding: 30px 25px;
        width: 95%;
    }

    .admin-login-modal-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .coming-soon-wrapper {
        padding: 30px 15px;
    }

    .coming-soon-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .coming-soon-subtitle {
        font-size: 18px;
    }

    .contact-icon {
        font-size: 32px;
    }

    .contact-text strong {
        font-size: 13px;
    }

    .contact-text span {
        font-size: 14px;
    }

    /* Modal adjustments for very small screens */
    .event-details-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .event-modal-right {
        padding: 25px 20px;
    }

    .event-modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-modal-date-badge {
        width: 80px;
        height: 80px;
    }

    .modal-event-day {
        font-size: 30px;
    }

    .event-modal-title-section h2 {
        font-size: 24px;
    }

    .event-modal-description h3 {
        font-size: 20px;
    }

    .event-modal-description p {
        font-size: 14px;
    }

    .event-modal-image-wrapper {
        height: 220px;
    }

    .event-modal-map {
        padding: 20px;
    }

    .add-to-calendar-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}
