* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    height: 100vh;
    background: url('https://c0c0n.org/img/banner-bg-2blurred.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.71);
    z-index: 1;
}

/* Main content */
.container {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo img {
    max-width: 480px;
    margin-bottom: 30px;
}

/* Tagline */
.tagline {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Date & location */
.event-details {
    font-size: 18px;
    font-weight: 400;

    background: linear-gradient(
        270deg,
        #1FB6FF,
        #782258,
        #1FB6FF
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 6s ease infinite;

    /* dark background plate */
    padding: 10px 18px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.55);

    display: inline-block;
    margin-bottom: 40px;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Coming Soon */
.coming-soon {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2.5px;

    background: linear-gradient(
        270deg,
        #e03f39,
        #19c1f3,
        #e03f39
    );

    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: comingGradient 5s ease infinite;
    margin-bottom: 25px;
}

@keyframes comingGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Stay Tuned */
.stay-tuned {
    font-size: 16px;
    font-weight: 300;
    color: #FF8A3D;
    letter-spacing: 0.5em;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 48px;
    }

    .tagline,
    .event-details {
        font-size: 15px;
    }

    .logo img {
        max-width: 220px;
    }
}


/* Bottom contact bar */
.contact-bar {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;

    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i, .contact-item a {
    font-size: 15px;
    color: #ffffff;
}

.contact-item a:hover {
    color:#19c1f3 ; }

.contact-item span {
    white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
        bottom: 15px;
    }
}
