/*
Theme Name: The Bridge Sauchie Coming Soon
Author: Adhi
Version: 4.0
Description: Final Coming Soon Theme
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HERO BACKGROUND */
.hero {
    background: url('https://the-bridge-sauchie.websitepro.hosting/wp-content/uploads/2026/04/ChatGPT-Image-Apr-7-2026-01_26_36-PM.png') no-repeat center center/cover;
    min-height: 100vh;
    position: relative;
}

/* DARK OVERLAY */
.overlay {
    background: rgba(0, 0, 0, 0.65);
    min-height: 100vh;
    padding: 40px;
    color: #fff;
}

/* LOGO */
.logo img {
    width: 160px;
}

/* HEADINGS */
h1 {
    font-size: 70px;
    margin: 10px 0;
    font-weight: 800;
    letter-spacing: 2px;
}

.highlight {
    color: #ff8c00;
}

/* DESCRIPTION TEXT */
.desc {
    max-width: 500px;
    margin-top: 20px;
    line-height: 1.6;
    font-size: 18px;
}

/* FEATURES SECTION */
.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.features div {
    font-size: 14px;
}

/* SOCIAL SECTION */
.social {
    text-align: center;
    margin-top: 60px;
}

.social h3 {
    color: #fff;
    margin-bottom: 20px;
}

.social a {
    margin: 10px;
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.social a:hover {
    background: #ff8c00;
    color: #fff;
}

/* FOOTER */
.footer {
    text-align: center;
    margin-top: 40px;
    color: #ccc;
    font-size: 14px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    h1 {
        font-size: 40px;
    }

    .overlay {
        text-align: center;
        padding: 20px;
    }

    .features {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 120px;
    }

    .desc {
        font-size: 16px;
    }
}