/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f8f2;
    color: #333;
}

h2 {
    text-align: center;
    color: #2c662d;
}

/* Header */
header {
    background-color: #145214;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.signup-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Adds a slight dark overlay */
    padding: 20px;
    border-radius: 10px;
    /* height: 100%; */
}

/* Dark overlay to reduce brightness */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 212, 211, 0.7); /* Adjust transparency (0.0 to 1.0) */
    z-index: 0;
}

.cta-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
}

/* About Section */
.about {
    text-align: center;
    padding: 50px;
}

/* Events Section */
.events {
    text-align: center;
    padding: 50px;
}

.event {
    display: inline-block;
    width: 45%;
    margin: 10px;
}

.event img {
    width: 100%;
    height: auto;
}

/* Testimonials */
.testimonials {
    text-align: center;
    background-color: #e6f2e6;
    padding: 40px;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 50px;
}

.contact form input,
.contact form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px;
}

.contact form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Footer */
footer {
    
    background-color: #145214;
   /*olor: white;
    text-align: center; */
    /* padding: 0px; */

position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

footer p{
    margin-top: 0;
    margin-bottom: 0;
}

.social-icons a {
    color: white;
    margin: 0 10px;
}


.navbar {
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    background-color: #034e31;
    padding: 10px 20px;
    color: white;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar .menu {
    display: flex;
    gap: 20px;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar .social-icons {
    display: flex;
    gap: 10px;
}

.navbar .social-icons a {
    color: white;
    font-size: 18px;
}

.login-btn,.logout-btn {
    background-color: white;
    border-radius: 5px;
    padding: 5px;
}

