/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
}


/* =========================================
   MAIN SECTION
========================================= */

.coming-soon {
    position: relative;
    width: 100%;
    min-height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("1.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================
   DARK OVERLAY
========================================= */

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.68)
        );

    z-index: 1;
}


/* =========================================
   CONTENT
========================================= */

.content {
    position: relative;
    z-index: 2;

    width: min(900px, 90%);

    text-align: center;
    color: #ffffff;

    padding: 40px 20px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    margin-bottom: 30px;
}

.logo img {
    width: 180px;
    max-width: 60vw;
    height: auto;

    display: block;
    margin: 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.45));
}


/* =========================================
   HEADING
========================================= */

h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 7vw, 82px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: 1px;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.45);

    margin-bottom: 25px;
}

h1 span {
    display: block;

    font-size: 0.62em;

    margin-top: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   DECORATIVE LINE
========================================= */

.decorative-line {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin: 25px auto;

    width: min(420px, 80%);
}

.decorative-line span {
    height: 1px;
    flex: 1;

    background: rgba(255, 255, 255, 0.7);
}

.decorative-line i {
    font-size: 18px;

    transform: rotate(-25deg);

    opacity: 0.9;
}


/* =========================================
   TAGLINE
========================================= */

.tagline {
    max-width: 760px;

    margin: 0 auto;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(21px, 3vw, 30px);

    line-height: 1.45;

    font-weight: 500;

    letter-spacing: 0.3px;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.5);
}

.tagline strong {
    display: inline;
    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.description {
    max-width: 680px;

    margin: 22px auto 0;

    font-size: clamp(13px, 1.5vw, 16px);

    line-height: 1.8;

    font-weight: 300;

    color: rgba(255, 255, 255, 0.92);

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5);
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px 30px;

    margin-top: 35px;
}

.contact-details a {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.contact-details a i {
    font-size: 17px;
}

.contact-details a:hover {
    transform: translateY(-3px);
    opacity: 0.75;
}


/* =========================================
   BOTTOM TEXT
========================================= */

.coming-text {
    margin-top: 40px;

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;

    font-style: italic;

    letter-spacing: 1px;

    opacity: 0.9;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 768px) {

    .content {
        padding: 30px 15px;
    }

    .logo {
        margin-bottom: 25px;
    }

    .logo img {
        width: 150px;
    }

    h1 {
        line-height: 1;
    }

    .description {
        line-height: 1.7;
    }

    .contact-details {
        gap: 15px 20px;
    }
}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 480px) {

    .coming-soon {
        min-height: 100svh;

        background-position: center;
    }

    .overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.70),
                rgba(0, 0, 0, 0.45),
                rgba(0, 0, 0, 0.78)
            );
    }

    .content {
        width: 94%;
        padding: 25px 10px;
    }

    .logo {
        margin-bottom: 20px;
    }

    .logo img {
        width: 125px;
    }

    h1 {
        font-size: 45px;
    }

    h1 span {
        font-size: 0.52em;

        letter-spacing: 1.5px;

        margin-top: 12px;
    }

    .decorative-line {
        margin: 20px auto;
    }

    .tagline {
        font-size: 21px;

        line-height: 1.4;
    }

    .description {
        font-size: 13px;

        line-height: 1.65;

        margin-top: 18px;
    }

    .contact-details {
        flex-direction: column;

        gap: 12px;

        margin-top: 28px;
    }

    .contact-details a {
        font-size: 13px;
    }

    .coming-text {
        margin-top: 28px;

        font-size: 17px;
    }
}