body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* BACKGROUND */
#bgImage {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -3;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: -2;
}

/* PARALLAX */
#intro {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transition: transform 0.2s ease-out;
}

/* LOGO */
.logo {
    width: 200px;
    margin: 60px auto 20px auto;
    display: block;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

/* TITLE */
.title {
    text-align: center;
    color: #fff;
    font-size: 48px;
    letter-spacing: 3px;
    opacity: 0;
    animation: slideUp 2s ease forwards;
    animation-delay: 1s;
}

/* DESCRIPTION TEXT — ΤΩΡΑ ΦΑΙΝΕΤΑΙ */
#dynamicText {
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    width: 70%;
    margin: 25px auto;

    opacity: 1 !important;
    z-index: 999;

    text-shadow:
        0 0 6px rgba(0,0,0,1),
        0 0 12px rgba(0,0,0,1),
        0 0 20px rgba(0,0,0,1);

    animation: textFade 2s ease forwards;
}

@keyframes textFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* UNDER CONSTRUCTION */
.uc {
    text-align: center;
    color: #ffffff;
    font-size: 26px;
    letter-spacing: 4px;
    margin-top: -10px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 1.5s;
}

/* COUNTDOWN */
.countdown {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    letter-spacing: 4px;
    margin-top: 20px;
    text-shadow: none;
    animation: none;
    font-family: 'Courier New', monospace;
}

/* ΤΗΛΕΦΩΝΙΚΕΣ ΚΡΑΤΗΣΕΙΣ */
.uc-call {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 35px;

    opacity: 1 !important;
    z-index: 999;

    text-shadow:
        0 0 6px rgba(0,0,0,1),
        0 0 12px rgba(0,0,0,1),
        0 0 20px rgba(0,0,0,1),
        0 0 30px rgba(0,0,0,0.9);

    animation: ucPulse 2s infinite ease-in-out;
}

@keyframes ucPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* CONTACT */
.contact {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 3s;
}

/* ANIMATIONS */
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

@keyframes slideUp {
    from {opacity:0; transform:translateY(20px);}
    to {opacity:1; transform:translateY(0);}
}
