/* Base Styles */
:root {
    --primary-color: #00000; /* A nice, clean blue */
    --secondary-color: #f8f9fa; /* Light grey for sections */
    --text-color: #343a40; /* Dark grey for readability */
    --accent-color: #DE9843; /* Green for call-to-action buttons */
    --font-family: 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

@media only screen and (max-width: 460px) {
    .nav-about {

        display: none !important; 

    }
    .nav-how {

        display: none !important;

    }
    .nav-contact {

    }
}
/* Header and Navigation */
header {
    background-color: transparent;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    opacity: 0.90;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: #f88e0c;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.menu {
    padding-top: 20px;
}
#hero {
    /* Set the background image and its properties */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-background.png') no-repeat center center/cover;
    
    /* Make the image responsive and cover the entire section */
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: adds a parallax effect */
    
    /* Center the text content on top of the image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f88e0c;
}

/* General Section Styling */
section {
    padding: 80px 5%;
}

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* How It Works Section */
#how-it-works {
    background-color: var(--secondary-color);
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-10px);
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Partners Section */
#partners ul {
    list-style: none;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#partners li {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
#contact {
    text-align: center;
}

.contact-button {
    background-color: var(--primary-color);
    color: #f88e0c;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-button:hover {
  /*   background-color: #f88e0c;*/
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 5%;
    background-color: var(--text-color);
    color: #fff;
}
