body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    background-color: #000;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url('../img/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo {
    width: 260px;
    max-width: 80%;
}

h2 {
    font-weight: 300;
    margin-top: 10px;
    opacity: 0.9;
}

.coming-soon {
    margin-top: 40px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.btn {
    margin-top: 40px;
    padding: 14px 32px;
    background: #c0a16b;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1rem;
}

/* SECTIONS */
section {
    padding: 80px 10%;
    background: #111;
}

section:nth-child(even) {
    background: #0a0a0a;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #c0a16b;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

ul {
    padding-left: 20px;
}

/* CONTACT */
.contact-box {
    background: #222;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.email {
    font-size: 1.3rem;
    margin-top: 10px;
    color: #c0a16b;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    background: #000;
    font-size: 0.9rem;
    opacity: 0.7;
}
