body {
    background: #000;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

@media (max-width: 768px) {
    .logo {
        width: 50px;
    }
}

.navbar {
    background: rgba(0, 0, 0, 0.8);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #fff;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

header {
    height: 70vh;
    background: url('../assets/IMG_5724.jpg') no-repeat center center;
    background-size: cover; /* Added this line */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header .container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

header a {
    border: 2px solid #fff;
    color: #fff;
    transition: background 0.3s, color 0.3s;
}

header a:hover {
    background: #fff;
    color: #000;
}

.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

footer {
    background: #000;
    padding: 1rem 0;
}