.header {
    width: 100%;
    height: 430px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: white;
    position: relative;
    background-color: #895e2c7c;
}

.background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/02-DHOOP-ARTI-21_03_15-1024x678.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.contact-info {
    padding: 2% 0;
    background-color: #d29c5e4a;
}

.contact-info .flex {
    width: 100%;
    display: flex;
    gap: 2%;
    margin: 6% 0;
    flex-wrap: wrap;
}

.contact-info .flex .box {
    padding: 2%;
    flex: 1;
    background-color: white;
    color: #895D2C;
    text-align: center;
    border-radius: 20px;
}

.contact-info .flex .box p {
    font-size: 1.3rem;
}


.upcomming-events {
    padding: 4% 0 8% 0;
    background-color: #FFF3E3;
}

.upcomming-events .pp {
    width: 70%;
    margin: 4% auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 30px;
}

.upcomming-events h2 {
    margin: 0;
    font-size: 3rem;
    text-align: center;
    color: #895D2C;
}



.upcomming-events .flex {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}

.upcomming-events .items:first-child {
    padding: 4%;
    flex: 40%;
    background-color: #643825;
    border-radius: 20px;
}
.upcomming-events .items:last-child {
    flex: 56%;
    
    overflow: hidden;
}
 
.upcomming-events .items:first-child form {
    width: 100%;
}

.upcomming-events .items:last-child {
    padding: 0 2%;
}

.upcomming-events .items h3 {
    font-size: 2rem;
    margin: 0 0 2% 0;
    padding: 0 0 4% 0;
    color: white;
    border-bottom: 1px solid white;
}

.upcomming-events .items p {
    font-size: 1.1rem;
    line-height: 30px;
}

.upcomming-events .event-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #895D2C;
    padding: 4% 0 3% 0;
    color: #895D2C;
}

.upcomming-events .event-name {
    font-size: 1.3rem;
}

.upcomming-events .event-date {
    font: 1.1rem sans-serif;
}

.footer-img {
    display: none;
}

.form-group {
    margin: 2% 0;
    display: flex;
    gap: 2%;
}

.form-group div {
    flex: 1;
}

.form-group label{
    padding: 1% 0 4% 0;
    display: block;
    color: white;
}

.form-group button{
    width: 100%;
    padding: 5%;
    border: 0;
    font-size: 1rem;
    border-radius: 100px;
    background-color: #C9AF5A;
    color: white; 
    display: block; 
    cursor: pointer;
    transition: .3s;
}

.form-group button:hover{background-color: #9e5638;}

input {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 100px;
    background-color: rgb(239, 237, 237);
    padding: 1% 3%;
}

textarea{
    width: 100%;
    height: 100px;
    border: 0;
    border-radius: 10px;
    background-color: lightgray;
    padding: 1% 3%;
    
}

@media (max-width:600px) {
    .container {
        width: 95%;
    }
    
    .contact-info .flex .box{
        flex: 100%;
        margin: 1% 0;
    }

    .header {
        height: 330px;
    }

    .upcomming-events .items {
        flex: 100%;
        margin: 3% 0;
    }

    .session .flex {
        flex-wrap: wrap;
    }

    .session .items {
        margin: 2% 0;
    }

    .session .items {
        flex: 100%;
    }

    .upcomming-events .items {
        flex: 100%;
    }


}