/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #202020;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hide the hamburger menu by default */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

/* Hide the nav menu on small screens */
#nav-menu {
    display: flex;
    padding-right: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {

    /* Show the hamburger on small screens */
    .hamburger {
        display: block;
    }

    /* Hide the nav menu initially on small screens */
    #nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #202020;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        flex-direction: column;
    }

    /* Show the nav menu items vertically on small screens */
    #nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* When the menu is open */
    #nav-menu.open {
        display: flex;
    }
}

.logo {
    width: 300px;
}

/* Hero Section */
.hero {
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 20px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

.feature-item h3 {
    color: #0066ff;
}

/* Subtler Mission Section */
.mission-section {
  background-image: url('/images/mission-background.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Lighter overlay for subtle effect */
  z-index: -1;
}

.mission-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1); /* Transparent background to add depth */
}

.mission-section h2 {
  font-size: 2.2rem; /* Reduced size for a less dominant heading */
  margin-bottom: 20px;
  color: #ff6600;
}

.mission-section .mission-statement {
  font-size: 1.1rem; /* Reduced font size */
  line-height: 1.6;
  color: #f0f0f0; /* Lighter font color to blend subtly */
  max-width: 750px;
  margin: 0 auto;
}

.mission-section strong {
  color: #ff6600;
}

.mission-section p {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0066ff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
}

.contact-form button:hover {
  background-color: #0051cc;
}

.collaboration-message {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #0066ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Success Message */
.success-message {
  color: green;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Error Message */
.error-message {
  color: red;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Footer Section */
.footer {
    background-color: #202020;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer p {
    font-size: 0.9rem;
    color: #ccc;
}