* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

header {
    height: 110px;
    background-color: white;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.logo {
    color: #0b6335;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.leaf {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 500px;
    background-image: url("maine-coast.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.coming-soon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 110px;
    font-weight: 900;
    color: rgba(11, 99, 53, 0.72);
    white-space: nowrap;
    letter-spacing: 3px;
}

.tagline {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.90);
    color: #0b6335;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* PHONE / MOBILE */
@media (max-width: 600px) {

    header {
        height: 85px;
        padding: 0 10px;
        justify-content: center;
    }

    .logo {
        font-size: 26px;
        letter-spacing: 1px;
        gap: 7px;
        white-space: nowrap;
    }

    .leaf {
        width: 32px;
        height: 32px;
    }

    .hero {
        height: calc(100vh - 85px);
        min-height: 500px;
        background-position: center;
    }

    .coming-soon {
        top: 43%;
        font-size: 15vw;
        letter-spacing: 1px;
    }

    .tagline {
        bottom: 8%;
        width: 90%;
        padding: 14px 12px;
        font-size: 18px;
        white-space: normal;
    }
}
