/*
Theme Name: Beyond Acres Theme
Author: You
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
}

/* HERO */
.hero-section {
    min-height: 100vh;
    background: url('../images/banner-image.jpg') no-repeat center/cover;
}

.hero-overlay {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.65));
}

/* HEADER */
.site-header {
    padding: 16px 40px;
}

.site-header img {
    width: 140px;
}

/* FIX BADGE HEIGHT ISSUE */
.project-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

/* TITLE */
.hero-title {
    font-family: 'Inria Serif', serif;
    font-size: clamp(24px, 4vw, 42px);
    color: #fff;
}

.hero-title span {
    font-weight: 700;
    font-style: italic;
}

.hero-description {
    font-size: clamp(14px, 2vw, 18px);
    color: #fff;
}

/* COMING */
.coming-soon-title {
    font-family: 'Italiana', serif;
    font-size: clamp(40px, 8vw, 90px);
    color: #fff;
}

/* EMAIL */
.email-box {
    max-width: 647px;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    height: 52px;
    background: #E9EBE3;
    border-radius: 40px;
    border: none;
    padding: 0 60px 0 20px;
    font-size: 16px;
    outline: none;
}

/* BUTTON */
.submit-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.submit-btn img {
    width: 40px;
}

/* NOTE */
.note {
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

/* ERROR */
.error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 6px;
    text-align: left;
}

/* LOCATION */
.location {
    max-width: 1000px;
    width: 100%;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-style: italic;
}

.location span {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0 15px;
}

.location span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: rgba(255,255,255,0.6);
}

.location img {
    width: 30px;
}

/* FOOTER */
.site-footer {
    background: #fff;
    padding: 10px 20px;
}

.site-footer img {
    max-width: 100%;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .site-header {
        padding: 12px 16px;
        align-items: center;
    }

    .site-header img {
        width: 100px;
    }

    .project-badge {
        height: 32px;
        font-size: 11px;
        padding: 0 10px;
        border-radius: 10px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 12px;
    }

    .coming-soon-title {
        font-size: 52px;
    }

    .email-box {
        padding: 12px;
        border-radius: 30px;
    }

    .input-wrapper input {
        height: 44px;
        font-size: 14px;
    }

    .submit-btn {
        width: 34px;
        height: 34px;
    }

    .location {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }

    .location span {
        justify-content: center;
        padding: 0;
        text-align: center;
    }

    .location span::after {
        display: none;
    }

    .location img {
        width: 24px;
    }

    .site-footer {
        padding: 8px 10px;
    }

    .site-footer img {
        width: 45%;
    }
}
@media(max-width:768px){

    .site-footer {
        flex-direction: column;   /* stack vertically */
        align-items: center;
        gap: 10px;
    }

    .site-footer img {
        width: 100%;         /* full width */
        max-width: 320px;    /* control size */
        height: auto;
    }
}