body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}



.header {
    background-color: black;
    padding: 1em 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #00fff5;
}

.search-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.search-icon {
    font-size: 18px;
    color: white;
    margin-right: 10px;
}

.search-input {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    outline: none;
}

.search-input::placeholder {
    color: #aaa;
}

.community-section {
    padding: 50px 0;
    justify-content: space-between;
}

.community-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* Space items evenly */
    max-width: 1000px;
    margin: 0 auto;
}

.community-text-section {
    text-align: left;
    max-width: 400px;
    margin-right: 20px; /* Space between text section and images */
}

.community-text-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 0; /* Adjusted margin for better alignment */
}

.community-text-section1 {
    text-align: right;
    max-width: 400px;
    margin-top: 20px;
}

.community-text-section3 h1{
    text-align: left;
    font-size: 90px;
    max-width: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.community-text-section4 h1{
    text-align: left;
    font-size: 40px;
    max-width: 100px;
    margin-top: 90px;
    margin-bottom: 20px;
}
.community-text-section5 h1{
    text-align: right;
    font-size: 60px;
    max-width: 100px;
    margin-top: 90px;
    margin-bottom: 20px;
}

.community-text-section1 p {
    font-size: 18px;
    margin-bottom: 20px;
}

.community-text-section .btn,
.community-text-section1 .btn {
    background-color: white;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.community-text-section .btn:hover,
.community-text-section1 .btn:hover {
    background-color: #00fff5;
    color: black;
}

.community-images {
    position: relative; /* Make container relative for positioning children absolutely */
    flex: 1;
    max-width: 400px;
    margin-bottom: 60px;
    align-self: center;
    margin-right: 100px;
}

.community-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: absolute;
    transition: transform 0.3s ease;
    margin-left: 30px;
    
}

.image-back {
    top: 20%;
    left: 20%;
    transform: rotate(-3deg);
    z-index: 1;
}

.image-front {
    top: 0;
    left: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.div1 {
    margin: auto;
    background: #6ffc03;
    border: 1px solid black;
    width: 250px;
    height: 200px;
}

.video-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.video-section .text-section {
    flex: 1;
    text-align: left;
}

.video-section .text-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.video-section .text-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.video-container {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.video-container video {
    width: 100%;
    height: auto;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.events-section {
    padding: 50px 0;
    justify-content: space-between;
}
.events-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* Space items evenly */
    max-width: 1000px;
    margin: 0 auto;
}

.events-text-section {
    text-align: left;
    max-width: 400px;
    margin-right: 20px; /* Space between text section and images */
}

.events-text-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 0; /* Adjusted margin for better alignment */
}

.events-images {
    position: relative; /* Make container relative for positioning children absolutely */
    flex: 1;
    max-width: 400px;
    margin-bottom: 60px;
    align-self: center;
    margin-right: 100px;
}

.events-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: absolute;
    transition: transform 0.3s ease;
    margin-left: 30px;
    
}

.events-back {
    top: 20%;
    left: 20%;
    transform: rotate(-3deg);
    z-index: 1;
}

.events-front {
    top: 0;
    left: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.about-section, .privacy-section , .community-standards-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-section h2, .privacy-section h2 , .community-standards-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00fff5;
}

.about-section p, .privacy-section p , .community-standards-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.privacy-link , .community-standards-link {
    color: #00fff5;
    text-decoration: none;
}

.privacy-link:hover , .community-standards-link:hover {
    text-decoration: underline;
}
.contact-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.contact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00fff5;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-details, .contact-form {
    flex: 1;
}

.contact-details h3, .contact-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-details a {
    color: #00fff5;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    width: 100%;
    
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    padding: 20px 0;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 20px;
}

.footer-contact, .footer-address {
    text-align: left;
    padding: 0 20px;
}

.footer-contact p, .footer-address p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}
.footer-bottom {
    text-align: center; /* Centers the text horizontally */
    padding: 20px 0; /* Adds some padding above and below for spacing */
}

.footer-bottom p {
    margin: 0; /* Ensures there is no extra margin around the paragraph */
}

