/* =========================================
   GT DRIVING TOURS
   ========================================= */

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

html,
body {
    width: 100%;
    min-height: 100%;
}

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

    background: #111;
    color: #fff;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background-image: url("/images/hero.jpg");

    background-size: cover;
    background-position: center center;

    display: flex;
    flex-direction: column;
}


/* =========================================
   CINEMATIC OVERLAY
   ========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.03) 35%,
            rgba(0, 0, 0, 0.10) 60%,
            rgba(0, 0, 0, 0.45) 100%
        );

    z-index: 1;

    pointer-events: none;
}


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

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: calc(100vh - 58px);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding:
        18px
        30px
        45px;
}


/* =========================================
   GT DRIVING TOURS LOGO
   ========================================= */

.logo {
    display: flex;

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

    width: 100%;

    margin-bottom: 12px;

    filter:
        drop-shadow(
            0 3px 4px rgba(0, 0, 0, 0.7)
        );
}

.logo img {
    display: block;

    width: 300px;

    height: auto;

    object-fit: contain;
}


/* =========================================
   MAIN HEADLINE
   ========================================= */

h1 {
    margin-top: 4px;

    max-width: 1050px;

    font-size:
        clamp(
            22px,
            3vw,
            40px
        );

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: 1px;

    color: #fff;

    text-shadow:
        0 3px 5px rgba(0, 0, 0, 0.8),
        0 1px 1px #222;
}


/* =========================================
   TAGLINE
   ========================================= */

.tagline {
    display: flex;

    flex-direction: column;

    align-items: center;

    margin-top: 25px;

    gap: 6px;

    font-size:
        clamp(
            25px,
            3.2vw,
            46px
        );

    line-height: 1.08;

    font-weight: 400;

    color: #fff;

    text-shadow:
        0 3px 5px rgba(0, 0, 0, 0.85),
        0 1px 2px #333;
}


/* =========================================
   BOTTOM MESSAGE
   ========================================= */

.message {
    margin-top: auto;

    padding-top: 30px;

    text-shadow:
        0 3px 5px rgba(0, 0, 0, 0.85);
}

.message p {
    font-weight: 500;
}


/* =========================================
   STAY TUNED
   ========================================= */

.stay-tuned,
.garage {
    font-size:
        clamp(
            20px,
            2.3vw,
            33px
        );

    line-height: 1.2;

    letter-spacing: 0.3px;
}

.garage {
    margin-top: 5px;
}


/* =========================================
   CONTACT
   ========================================= */

.contact-heading {
    margin-top: 30px;

    font-size:
        clamp(
            20px,
            2.2vw,
            32px
        );

    font-weight: 600;
}


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

.email {
    display: inline-block;

    margin-top: 6px;

    color: #fff;

    text-decoration: none;

    font-size:
        clamp(
            19px,
            2.2vw,
            33px
        );

    transition:
        color 0.2s ease;
}

.email strong {
    color: #ffffff;

    font-weight: 700;
}

.email:hover {
    color: #eee;
}


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

.footer {
    position: relative;

    z-index: 5;

    width: 100%;

    min-height: 58px;

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

    color: #222;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        7px 30px;
}


/* =========================================
   COPYRIGHT
   ========================================= */

.copyright {
    font-size: 14px;

    font-weight: 500;
}


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

.socials {
    display: flex;

    align-items: center;

    gap: 14px;
}

.social {
    width: 39px;
    height: 39px;

    border-radius: 50%;

    background: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.social:hover {
    transform: translateY(-2px);

    background: #8e2520;
}

.social svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: white;

    stroke-width: 1.8;
}

.social .fill {
    fill: white;

    stroke: none;
}


/* =========================================
   FACEBOOK
   ========================================= */

.facebook svg {
    fill: white;

    stroke: none;
}


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

@media (max-width: 900px) {

    .hero-content {
        padding:
            18px
            20px
            40px;
    }

    .tagline {
        margin-top: 20px;
    }

    .message {
        padding-top: 25px;
    }

}


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

@media (max-width: 600px) {

    .hero {
        min-height: 100svh;

        background-position:
            55% center;
    }


    /* Main content */

    .hero-content {
        min-height:
            calc(100svh - 52px);

        padding:
            12px
            12px
            28px;
    }


    /* Logo */

    .logo {
        margin-bottom: 10px;
    }

    .logo img {
        width: 150px;
    }


    /* Main heading */

    h1 {
        font-size: 18px;

        line-height: 1.15;

        letter-spacing: 0.4px;
    }


    /* Tagline */

    .tagline {
        margin-top: 17px;

        gap: 5px;

        font-size: 24px;

        line-height: 1.08;
    }


    /* Bottom message */

    .message {
        padding-top: 18px;
    }

    .stay-tuned,
    .garage {
        font-size: 16px;

        line-height: 1.2;
    }

    .contact-heading {
        margin-top: 20px;

        font-size: 16px;
    }

    .email {
        margin-top: 5px;

        font-size: 16px;

        word-break: break-word;
    }


    /* Footer */

    .footer {
        min-height: 52px;

        padding:
            6px 12px;
    }

    .copyright {
        font-size: 9px;
    }


    /* Social icons */

    .socials {
        gap: 7px;
    }

    .social {
        width: 33px;
        height: 33px;
    }

    .social svg {
        width: 18px;
        height: 18px;
    }
}


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

@media (max-width: 380px) {

    .logo img {
        width: 140px;
    }

    .tagline {
        font-size: 21px;
    }

    .stay-tuned,
    .garage,
    .contact-heading,
    .email {
        font-size: 15px;
    }

    .copyright {
        font-size: 8px;
    }

    .social {
        width: 30px;
        height: 30px;
    }

    .social svg {
        width: 16px;
        height: 16px;
    }
}
