body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: white;
}

/* HEADER */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header img {
    height: 60px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

/* MOBILE MENU */
.menu-btn {
    display: none;
    font-size: 32px;
    color: #d4af37;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 90px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
}

.mobile-nav a {
    margin: 10px 0;
    font-size: 20px;
    color: #d4af37;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('background.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 45px;
    text-shadow: 0 0 10px black;
}

.hero-sub {
    margin-top: 10px;
    font-size: 22px;
    color: #d4af37;
}

.note-box {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    max-width: 700px;
}

/* SECTIONS */
section {
    padding: 80px 20px;
}

h2 {
    text-align: center;
    font-size: 40px;
    color: #d4af37;
}

/* BOX */
.box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

/* TEAM IMAGE */
.team-img {
    width: 300px;
    border-radius: 15px;
    display: block;
    margin: 20px auto;
}

/* CONTACT */
#contact a {
    color: #d4af37;
    font-size: 22px;
}

.call-btn {
    display: inline-block;
    margin-top: 20px;
    background: #d4af37;
    padding: 18px 40px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    font-size: 22px;
}

/* FOOTER */
footer {
    padding: 20px;
    background: #000;
    text-align: center;
    margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 32px;
    }

    .box {
        width: 95%;
    }
}
body {
    background: rgb(18, 24, 25) !important;
}
 
