body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/img1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 150vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    flex-direction: row;
    min-height: 100px;
    width: 100%;
    position: relative;

}

.header{
    background-color: #333;
    color: #fff;
    padding: 20px;
    width: 100%;
}

.header img {
    height: 110px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-items: center;
    align-items: center;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: blueviolet;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: azure;
    font-size: 24px;
    margin: 10px 0 40px;
    color: white;
    font-family: 'Asap', sans-serif;
}

.first-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.first-btn:hover {
    border: 1px white;
    background: orangered;
    transition: 1s;
}

.bordered-container {
    border: 2px solid white;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}

.video-container {
    width: 100%;
    text-align: center;
}

.video-container video {
    width: 200%;
    max-width: 640px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.faq{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Asap', sans-serif

}

.wrapper{
    max-width: 75%;
    margin: auto;
}

.wrapper > p,
.wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
}

.wrapper > h1{
    letter-spacing: 3px;
}

.accordion{
    background-color: black;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    padding: 2rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 20px;

}

.accordion i {
    font-size: 1.6rem;
}

.active,
.accordion:hover{
    background-color: transparent;
}

.panel{
    padding: 0 18px;
    background-color: black;
    overflow: hidden;
    background-color: transparent;
    padding: 0 2rem 2.5rem 2rem;

}

.panel p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.4;
}



@media (max-width: 700px) {
    .container {
        font-size: 10px;
    }

}

/* About Us */

.about-section {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-section {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.team-member {
    text-align: center;
    margin: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

h1, h2, h3 {
    font-family: "Kenia", sans-serif;
}

p {
    font-family: "Asap", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}

footer p {
    font-size: 14px;
    margin: 5px 0;
}

/* Events */
.events-section {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.event {
    margin: 20px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
}

.event h2 {
    font-family: "Kenia", sans-serif;
    color: white;
}

.event p {
    font-family: "Asap", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer p {
    font-size: 14px;
    margin: 5px 0;
}

/* Photo Gallery CSS */

.gallery-section {
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.photos-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.photo {
    flex: 0 0 48%; /* Each photo takes up 48% of the available space (with some spacing in between) */
    text-align: center;
}

.photo img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.photo h2 {
    margin-top: 10px;
    font-size: 18px;
}


/* form */

form {
    max-width: 400px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

label {
    display: block;
    margin-top: 10px;
    text-align: left;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    background: #333;
    color: white;
}

input[type="submit"] {
    background: orangered;
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="submit"]:hover {
    background: red;
}

.registration-section,
.photo-gallery {
    text-align: center;
}

.registration-section p, .photo-gallery p {
    text-align: center;
    margin-left: 20px;
    margin-top: 10px;
    color: white;
}

.registration-section ul {
    text-align: left;
    margin-left: 20px;
    margin-top: 10px;
}


/* Pricing Cards */
.tier-list {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pricing-card {
    border: 2px solid white;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
}

.pricing-card h2 {
    font-size: 24px;
}

.pricing-card p {
    font-size: 16px;
    margin: 10px 0;
}

.pricing-card button {
    background: orangered;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

.pricing-card button:hover {
    background: red;
}






