body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAV */
header {
    background: rgba(0,0,0,0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 55px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    color: #00bfff;
}

.btn-nav {
    background: #00bfff;
    padding: 8px 15px;
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('images/club.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    text-align: center;
    top: 40%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 3rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #00bfff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* SERVICES */
.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    padding: 10px;
}

.card p {
    padding: 0 10px 20px;
}

/* ABOUT */
.dark-section {
    background: #111;
    padding: 60px 0;
}

/* CONTACT */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
}

form {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

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