/* General Body Styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background-color: #f5f5f5;
}

/* Navbar Styles */
header {
    background-color: #fff; /* Set header background to white */
    color: #000; /* Set text color to black */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff; /* Set navbar background to white */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust the height as needed */
    margin-right: 10px; /* Space between logo image and text */
}

.logo a {
    color: #000; /* Set logo text color to black */
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #000; /* Set link text color to black */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #555; /* Darker shade of black on hover */
}

/* Logout Button Styles */
.logout-btn {
    background-color: transparent;
    color: #000; /* Set logout button text color to black */
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.logout-btn:hover {
    color: #555; /* Darker shade of black on hover */
}

/* Hero Section */
.hero {
    height: calc(100vh - 120px);
    background-image: url("https://source.unsplash.com/random/1600x900");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    color: #fff;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #28a745;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 10px;
}

.cta-btn:hover {
    background-color: #218838;
}

.cta-btn.secondary {
    background-color: #000000;
}

.cta-btn.primary {
    background-color: #990F04;
}

.cta-btn.secondary:hover {
    background-color: #5a6268;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem 1rem;
}

.feature {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 30%;
    margin: 10px;
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 0.7rem 1.2rem;
    }

    .navbar {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 1rem;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .features {
        flex-direction: column;
    }

    .feature {
        width: 80%;
    }
}
