/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #f0f0f0;
    color: #333;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero h2, .hero p, .hero .btn {
    position: relative;
    z-index: 1;
}

.contact {
    background: #020202;
}

.contact p {
    margin: 0;
}

/* Gold Theme */
.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: #d4af37 !important;
}

.nav-link:hover {
    color: #b8860b !important;
}

.btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #b8860b;
    border-color: #b8860b;
    color: #fff !important;
}

/* Larger logo and nav on desktop */
@media (min-width: 992px) {
    .navbar-brand img {
        height: 60px;
    }

    .navbar-nav .nav-link {
        font-size: 1.25rem;
    }

    .navbar {
        padding: 1.5rem 0;
    }
}
