/* ==========================================
   GLOBAL RESET
========================================== */

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


/* ==========================================
   BODY
========================================== */

body {
    font-family: Arial, Helvetica, sans-serif;

    min-height: 100vh;

    color: #fff;

    background: #111;

    overflow-x: hidden;
}


/* ==========================================
   WELCOME / RAJA'S BANNER
========================================== */

.welcome-banner {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 50px 20px;

    position: relative;

    color: #fff;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.82)
        ),
        url("images/takeaway.jpg")
        center / cover no-repeat;
}


/* ==========================================
   BACKGROUND COLOUR OVERLAY
========================================== */

.welcome-banner::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(218, 41, 28, 0.25),
            transparent 50%,
            rgba(255, 183, 3, 0.10)
        );

    pointer-events: none;
}


/* ==========================================
   MAIN CONTENT
========================================== */

.welcome-content {
    max-width: 800px;

    width: 100%;

    position: relative;

    z-index: 2;
}


/* ==========================================
   35 YEAR BADGE
========================================== */

.welcome-badge {
    display: inline-block;

    padding: 8px 20px;

    margin-bottom: 20px;

    border: 1px solid #ffb703;

    border-radius: 50px;

    color: #ffb703;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    background: rgba(0, 0, 0, 0.25);
}


/* ==========================================
   MAIN HEADING
========================================== */

.welcome-content h1 {
    margin: 0 0 14px;

    font-size: clamp(40px, 6vw, 70px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;

    color: #fff;

    text-transform: uppercase;
}


/* ==========================================
   SECOND HEADING
========================================== */

.welcome-content h2 {
    margin-bottom: 22px;

    font-size: clamp(21px, 3vw, 36px);

    line-height: 1.2;

    font-weight: 700;

    color: #fff;
}


/* Gold text */

.welcome-content h2 span {
    color: #ffb703;
}


/* ==========================================
   DESCRIPTION
========================================== */

.welcome-content > p {
    max-width: 600px;

    margin: 0 auto 20px;

    font-size: 16px;

    line-height: 1.6;

    color: #eee;
}


/* ==========================================
   HIGHLIGHT MESSAGE
========================================== */

.welcome-highlight {
    display: inline-block;

    margin: 8px auto 25px;

    padding: 12px 20px;

    background: rgba(230, 57, 33, 0.90);

    border-radius: 8px;

    font-size: 16px;

    font-weight: 700;

    color: #fff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   COMING SOON
========================================== */

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

    font-weight: 900;

    letter-spacing: 3px;

    color: #ffb703;

    margin-top: 8px;
}


/* ==========================================
   SMALL FOOTER MESSAGE
========================================== */

.welcome-small {
    margin-top: 10px !important;

    margin-bottom: 0 !important;

    font-size: 14px !important;

    color: #ccc !important;
}


/* ==========================================
   COUNTDOWN
========================================== */

.countdown {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin: 25px 0 30px;

    flex-wrap: wrap;
}


.time-box {
    min-width: 75px;

    padding: 12px 10px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(10px);
}


.time-box strong {
    display: block;

    font-size: 27px;

    font-weight: 800;

    color: #ffb703;
}


.time-box small {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #ddd;
}


/* ==========================================
   EMAIL SIGNUP
========================================== */

.signup {
    max-width: 500px;

    margin: 25px auto 0;
}


.signup p {
    margin-bottom: 12px;

    font-size: 14px;

    color: #ddd;
}


/* ==========================================
   FORM
========================================== */

.form {
    display: flex;

    gap: 8px;

    width: 100%;
}


.form input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    padding: 14px 18px;

    border-radius: 50px;

    background: #fff;

    color: #222;

    font-size: 14px;
}


.form input::placeholder {
    color: #888;
}


.form button {
    border: none;

    padding: 14px 22px;

    border-radius: 50px;

    background: #e63921;

    color: #fff;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    transition: all 0.25s ease;

    white-space: nowrap;
}


.form button:hover {
    background: #ff4b2b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(230, 57, 33, 0.35);
}


/* ==========================================
   FOOTER
========================================== */

.footer {
    margin-top: 30px;

    color: #aaa;

    font-size: 12px;
}


/* ==========================================
   SOCIAL ICONS
========================================== */

.social {
    margin-top: 12px;

    display: flex;

    justify-content: center;

    gap: 8px;
}


.social a {
    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    background: rgba(255, 255, 255, 0.12);

    font-size: 14px;

    transition: all 0.2s ease;
}


.social a:hover {
    background: #e63921;

    transform: translateY(-3px);
}


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

@media (max-width: 600px) {

    .welcome-banner {
        min-height: 100vh;

        padding: 40px 18px;
    }


    .welcome-content {
        max-width: 100%;
    }


    /* Badge */

    .welcome-badge {
        font-size: 10px;

        padding: 7px 15px;

        letter-spacing: 1.5px;

        margin-bottom: 18px;
    }


    /* Main heading */

    .welcome-content h1 {
        font-size: 42px;

        letter-spacing: -1px;

        margin-bottom: 12px;
    }


    /* Second heading */

    .welcome-content h2 {
        font-size: 23px;

        line-height: 1.25;

        margin-bottom: 18px;
    }


    /* Description */

    .welcome-content > p {
        font-size: 15px;

        line-height: 1.55;

        max-width: 500px;
    }


    /* Highlight */

    .welcome-highlight {
        font-size: 14px;

        padding: 11px 16px;

        margin-bottom: 20px;
    }


    /* Countdown */

    .countdown {
        gap: 7px;

        margin: 20px 0 25px;
    }


    .time-box {
        min-width: 65px;

        padding: 10px 7px;
    }


    .time-box strong {
        font-size: 23px;
    }


    .time-box small {
        font-size: 9px;
    }


    /* Coming soon */

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

        letter-spacing: 2.5px;
    }


    /* Email form */

    .signup {
        margin-top: 20px;
    }


    .form {
        flex-direction: column;

        gap: 8px;
    }


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


    .form input {
        padding: 14px 18px;
    }


    .form button {
        padding: 14px 20px;
    }


    /* Footer */

    .footer {
        margin-top: 25px;

        font-size: 11px;
    }

}


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

@media (max-width: 380px) {

    .welcome-banner {
        padding: 30px 15px;
    }


    .welcome-content h1 {
        font-size: 36px;
    }


    .welcome-content h2 {
        font-size: 20px;
    }


    .welcome-content > p {
        font-size: 14px;
    }


    .time-box {
        min-width: 58px;
    }


    .time-box strong {
        font-size: 20px;
    }


    .welcome-highlight {
        font-size: 13px;
    }

}