/* General styling */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: rgba(0,0,0,0.9) !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
}
#hero .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}
#hero .carousel-caption {
    bottom: 40%;
}
.text-shadow {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* Location Section */
#location {
    background-attachment: fixed;
}

/* Rules */
#rules li {
    font-size: 1.1rem;
    background: rgba(255,255,255,0.9);
    border: none;
    margin-bottom: 6px;
}

/* Contact */
#contact {
    background: linear-gradient(to bottom right, #000, #111);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    #hero .carousel-caption {
        bottom: 20%;
    }
    #hero h1 {
        font-size: 2.5rem;
    }
}