/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2a2a2a;
    color: #f0f0f0;
    background-image: url('bunker.webp');
    background-size: cover;
    background-position: center;
}

/* Header */
header {
    background: #383838;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

header h1 {
    color: #d4af37;
    font-size: 1.8em;
}

nav ul {
    list-style-type: none;
    padding: 2;
    margin: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 42, 42, 0.5);
}
.top_bar {
    list-style-type: none;
    padding: 0;
    margin: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    background-color: rgba(42, 42, 42, 0.5);
}

nav ul li a {
    text-decoration: none;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2em;
}
nav ul li a:hover {
    color: #fff;
}

nav ul li a:active {
    text-decoration: none;
    color: #d4af37;
    font-size: 1em;
}

/* Hero section */
.hero {
    background-image: url('bunker-hero.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.hero-content {
    position: relative;
    color: #f0f0f0;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.hero .search-bar {
    margin-top: 20px;
}

.search-bar input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #d4af37;
    border: none;
    border-radius: 5px;
    color: #2a2a2a;
    cursor: pointer;
}

/* Footer */
footer {
    background: #383838;
    color: #d4af37;
    padding: 20px;
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    header h1 {
        font-size: 1.6em;
    }

    nav ul li a {
        font-size: 1.1em;
    }

    .hero h2 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .hero .search-bar input {
        width: 250px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }

    header h1 {
        font-size: 1.4em;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 1em;
    }

    .hero {
        height: 100%;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .search-bar input {
        width: 200px;
    }

    .search-bar button {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.2em;
    }

    nav ul li a {
        font-size: 0.9em;
    }

    .hero {
        height: 450px;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .hero .search-bar input {
        width: 180px;
    }

    .search-bar button {
        padding: 8px 14px;
    }

    footer {
        font-size: 0.9em;
    }
}



