/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #5e3a8a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup h2 {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cookie-btn {
    padding: 10px 30px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accept-btn {
    background-color: #fff;
    color: #5e3a8a;
}

.refuse-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Header and navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5e3a8a;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #5e3a8a;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #5e3a8a;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

/* Hero section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./assets/1.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}

.primary-btn {
    background-color: #5e3a8a;
    color: #fff;
}

.primary-btn:hover {
    background-color: #4d2e73;
}

.secondary-btn {
    background-color: transparent;
    color: #5e3a8a;
    border: 1px solid #5e3a8a;
}

.secondary-btn:hover {
    background-color: #5e3a8a;
    color: #fff;
}

.full-width {
    width: 100%;
}

/* About section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Impact section */
.impact {
    background-color: #5e3a8a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.impact p {
    max-width: 900px;
    margin: 0 auto;
}

/* Clients section */
.clients {
    padding: 80px 0;
}

.clients h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: #5e3a8a;
    margin-bottom: 0;
}

/* Events section */
.events {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.events h2 {
    text-align: center;
    margin-bottom: 40px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.event-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 30px;
}

.event-date {
    color: #5e3a8a;
    font-weight: 500;
    margin-bottom: 15px;
}

.event-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.event-content ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.event-content .btn {
    margin-top: 20px;
}

/* Contact section */
.contact {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 30px 0;
}

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

.footer-logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5e3a8a;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #5e3a8a;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav.active ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
main{
    margin-top: 100px;
}




/* Thank you page */
.thank-you {
    background-color: #5e3a8a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140px); /* Adjust for header and footer */
    text-align: center;
    padding: 80px 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.back-btn {
    background-color: #fff;
    color: #5e3a8a;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-btn:hover {
    background-color: #f0f0f0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav.active ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}