/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Header and Navigation Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #111;
}

.logo-container img {
    height: 80px; /* Adjust as needed */
}

/* Custom styles for the Bootstrap Navbar to match the Cold Raptors theme */

.navbar {
    background-color: #111 !important; /* Match the header background color */
}

.navbar-brand img {
    height: 80px; /* Adjust as needed */
}

.nav-link {
    color: #fff !important; /* Match the text color */
    font-weight: bold;
}

.nav-link:hover,
.nav-link:focus {
    color: #00b4d8 !important; /* A bright blue to match the 'Cold Raptors' theme */
}

/* Ensuring the collapsed menu icon matches the theme */
.navbar-toggler {
    border-color: #00b4d8;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%2300b4d8' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath d='M1 1.5h14m-14 6h14m-14 6h14'/%3e%3c/svg%3e");
}

/* Home Section Styles */
#home {
    text-align: center;
    padding: 4rem 0;
    background: url('raptor-background.jpg') no-repeat center center/cover;
}

#home h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#home p {
    font-size: 1.5rem;
    line-height: 1.5;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #111;
}

footer p {
    color: #888;
}
