* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('bg.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

/* BRAND NAME */
.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
}

/* SMALL DIVIDER LINE */
.divider {
    display: block;
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 18px auto;
}

/* COMING SOON TEXT */
.content p {
    font-size: 14px;
    letter-spacing: 5px;
    font-weight: 400;
    opacity: 0.9;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .content h1 {
        font-size: 44px;
    }

    .content p {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .divider {
        width: 60px;
    }
}
