/* ==========================
   CROSS DECK IT SOLUTIONS
   Coming Soon Landing Page
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.landing-page {
    min-height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.75)
        ),
        url('images/tech-background.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-box {
    width: 100%;
    max-width: 850px;

    text-align: center;

    background: rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(39, 174, 228, 0.25);
    border-radius: 20px;

    padding: 60px 50px;

    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(39, 174, 228, 0.08);
}

.logo {
    width: 100%;
    max-width: 320px;
    margin-bottom: 35px;
}

h1 {
    font-family: 'Russo One', sans-serif;

    font-size: clamp(2.2rem, 5vw, 4.5rem);

    line-height: 1.15;

    text-transform: uppercase;

    color: #27aee4;

    margin-bottom: 25px;

    text-shadow:
        0 0 10px rgba(39, 174, 228, 0.4),
        0 0 20px rgba(39, 174, 228, 0.2);
}

.intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d8d8d8;

    max-width: 720px;

    margin: 0 auto 20px;
}

.subtext {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 35px;
}

.subscribe-form {
    display: flex;
    gap: 15px;

    max-width: 650px;
    margin: 0 auto 35px;
}

.subscribe-form input {
    flex: 1;

    padding: 18px;

    border-radius: 8px;
    border: 1px solid rgba(39, 174, 228, 0.4);

    font-size: 1rem;
    font-family: 'Poppins', sans-serif;

    outline: none;
}

.subscribe-form input:focus {
    border-color: #27aee4;

    box-shadow:
        0 0 10px rgba(39, 174, 228, 0.3);
}

.subscribe-form button {
    padding: 18px 30px;

    border: none;
    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #27aee4,
        #1b84b0
    );

    color: #ffffff;

    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(39, 174, 228, 0.5);
}

.footer-text {
    font-size: 0.9rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #27aee4;
}

/* ==========================
   TABLETS
========================== */

@media (max-width: 992px) {

    .content-box {
        padding: 50px 35px;
    }

    h1 {
        font-size: 3rem;
    }

    .logo {
        max-width: 280px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .content-box {
        padding: 40px 25px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    h1 {
        font-size: 2.2rem;
    }

    .intro {
        font-size: 1rem;
    }

    .logo {
        max-width: 220px;
    }
}

/* ==========================
   SMALL PHONES
========================== */

@media (max-width: 480px) {

    .content-box {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .intro {
        font-size: 0.95rem;
    }

    .subtext {
        font-size: 0.95rem;
    }

    .footer-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}
.contact-details {
    margin-top: 25px;
    margin-bottom: 25px;
}

.contact-details h3 {
    font-family: 'Russo One', sans-serif;
    color: #27aee4;
    margin-bottom: 15px;
}

.contact-details p {
    margin: 8px 0;
    color: #ffffff;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
}

.contact-details a:hover {
    color: #27aee4;
}