* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #000; 
    color: #fff; 
    scroll-behavior: smooth;
}

/* Header */
header { position: absolute; top: 0; width: 100%; padding: 20px; z-index: 10; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-weight: 700; letter-spacing: 2px; color: #d4af37; }
.nav-links { list-style: none; }
.nav-links a { text-decoration: none; color: #fff; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('assets/images/nobodysbanda.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content { position: relative; z-index: 2; padding: 20px; }
.hero-content h1 { font-size: 2.5rem; letter-spacing: 4px; margin-bottom: 10px; }
.subtitle { font-size: 1.2rem; color: #d4af37; letter-spacing: 3px; margin-bottom: 20px; text-transform: uppercase; }
.mystic-text { max-width: 500px; margin: 0 auto 30px; font-weight: 300; line-height: 1.6; font-size: 0.9rem; }

.btn-explore {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}
.btn-explore:hover { background: #d4af37; color: #000; }

/* Contact Section */
.contact-section { padding: 100px 20px; background: #000; text-align: center; }
.contact-container h2 { margin-bottom: 40px; letter-spacing: 2px; text-transform: uppercase; }
.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
}
.btn-send {
    padding: 15px;
    background: #d4af37;
    color: #000;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero::before { 
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('assets/images/nobodysbanda-mobile.png');
        background-size: contain; 
    }
    .hero-content h1 { font-size: 1.8rem; }
    .subtitle { font-size: 1rem; }
}