* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'hello';
    src: url(../fonts/HelloCatround.ttf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #f7f6f2;
    font-family: "Be Vietnam Pro", serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bgcolor.png);
    background-size: contain;
    display: flex;
    flex-direction: column;
}

#container {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;

    margin-right: 60px;
}

.logo {
    width: 12vw;
    height: 12vh;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    left: 70px;
}

.hamburger-icon {

    background-image: url(../img/SVG/Middel\ 3.svg);
    display: none;
    width: 10vw;
    height: 10vh;
    cursor: pointer;
    background-repeat: no-repeat;
    position: absolute;
    right: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}



nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1.3rem;
    transition: color 0.3s;
}





/* Menü responsive */
@media (max-width: 768px) {
    .hamburger-icon {
        display: block;

    }

    .logo {
        width: 15vw;
        height: 15vh;
        background-image: url(../img/logo.png);
        background-repeat: no-repeat;
        background-size: contain;
        left: 0px;
        top: 10px;
    }

    nav {
        display: none;

        position: fixed;

        top: 0px;

        width: 100vw;
        height: 100vh;
        background-color: #efd396;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        transition: right 0.5s ease;
    }

    nav ul {

        flex-direction: column;
        position: absolute;
        background-color: #efd396;
        gap: 50px;
        width: 100vw;
        height: 100vh;

    }

    nav ul li a {
        font-size: 3rem;
        font-family: 'hello';
        text-transform: uppercase;
        text-decoration: none;
        margin: 10px 0;
        color: #2c231e;
    }

    .menu {
        display: none;
        z-index: 1000;

    }

    .menu.active {
        display: flex;
        right: 0;
    }


}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-top: 50px;
}


/*home page*/
.scrolling-text {
    width: 100%;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 20px;
    border-top: 2px solid black;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.scrolling-text p {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 10s linear infinite;
    margin-top: 15Px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-80%);
    }
}

.main-foto {
    opacity: 0.9;
    background-image: url(../img/Wari-Om_Colibri-Spirit-Festival-2024-9891.jpg);
    width: 80vw;
    height: 60vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.datum {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 30px;
}

.ticket {
    width: 200px;
    height: 50px;
    margin: 0 auto;
    line-height: 3;
    border: 2px solid black;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 100px;

}

.ticket:hover {
    background-color: #481211;
    color: #FFF;
}

a .ticket {
    color: black;
    text-decoration: none;

}

#part2 {
    display: flex;
    margin-top: 30px;
    margin-left: 30px;
    flex-direction: row;
    gap: 150px;
}

.tekst {
    max-width: 500Px;
    font-size: 1.3rem;


}

.tekst h4 {
    margin-top: 30px;
    font-weight: 300;
}

.kop {
    font-size: 1.5rem;
}

.tabels {

    background-image: url(../img/tabel.png);
    width: 500px;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
}



.tabel p {
    color: white;
    font-size: 1.5rem;
    text-align: center;

}


@media (max-width: 768px) {
    #part2 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
        margin-left: 0;
    }

    .kop {
        font-size: 1.1rem;
    }

    .tekst h4 {
        width: 300px;
        font-size: 1rem;
    }

    .tabels {
        width: 300px;
        height: 300Px;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;

    }
}

/* Program Section Styles */
.Hoogtepunten {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

    text-align: center;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    background-color: #2b231e;
    color: #FFF;
    background-size: contain;
    margin-top: 50px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Hoogtepunten h2 {
    font-size: 30px;
    color: #FFF;
    font-family: 'hello';
    text-transform: uppercase;
    margin-bottom: 20px;
}

.Hoogtepunten ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.Hoogtepunten ul li {
    font-size: 18px;

    margin: 10px 0;
    font-family: 'Arial', sans-serif;
}

.Hoogtepunten ul li strong {


    font-weight: bold;
}

.Hoogtepunten .more-info {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border: 2px solid #efd396;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;

    color: #fff;
    text-decoration: none;
    font-size: 16px;

    transition: background-color 0.3s ease;
}

.Hoogtepunten .more-info:hover {
    background-color: #868b78;

    color: #f9f4ee;

}

.icons-section {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 100px;
    padding-bottom: 150px;

}

.element p {
    font-size: 1.5rem;
    padding-top: 150px;
    font-family: "Be Vietnam Pro", serif;
    font-style: italic;
    font-weight: bolder;
}

/* Icon Containers */
.icon-container {
    position: relative;
    text-align: center;
}

.icon {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    animation: spin-scale 4s infinite;
}

@media (max-width: 768px) {
    .icon {
        width: 70px;
        height: 70px;
    }

    .icon-description {
        width: 100px;
        padding: 5px;
    }

    .Hoogtepunten {
        margin-top: 100px;
    }

    #sunlocatie p {
        font-size: 1rem;
        font-family: 'hello';
        text-transform: uppercase;

    }

    #sunlocatie {

        margin-top: 50px;
        gap: 5px;
    }

}

/* Rotate and Scale Animation */
@keyframes spin-scale {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Description Styling */
.icon-container {
    position: relative;
    display: inline-block;
}

.icon-description {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: #2b231e;
    color: #fff;
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Description Visible on Hover */
.icon-container:hover .icon-description {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

@media (max-width: 768px) {
    .icon-container {
        width: 30%;
    }

    .icon-description {
        width: 150px;
        
        font-size: 12px;
      
    }
}

.map-container {
    position: relative;

    height: 0;
    width: 80%;
    height: 280px;

    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #f0f0f0;
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    margin: 0 auto;
 
}

.festival-title {
    text-align: center;
    padding-bottom: 30px;
}

/* Location Section */
.location-section {
    position: relative;
    text-align: center;
}

#sunlocatie {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;

}

#sunlocatie p {
    font-size: 1.5rem;
    font-family: 'hello';
    text-transform: uppercase;

}

.sunny {
    background-image: url(../img/halfsun.png);
    width: 7vw;
    height: 7vh;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Styling for the iframe to ensure it fills the container */
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(0.8) saturate(1.5) brightness(1.1) contrast(1.2);
    border: 3px solid black;
}

/*end of the home page*/


/*about*/
.about {
    text-align: center;
    margin-top: 100px;
}

.about h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'hello';
    text-transform: uppercase;
    color: #481211;
}

.about .slogan {
    font-size: 1.2rem;

    font-style: italic;
}

/* Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: #efd396;
    padding: 60px;
}

.text-with-drum {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    align-items: center;
}

.paragraphs p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

.drum img {
    width: 100%;
    height: auto;

    max-width: 300px;
    max-height: 300px;

}

/* Photo Grid Styling */
.photo-grid {
    display: flex;
    align-items: center;
    white-space: nowrap;
  

    position: relative;
    animation: scroll 17s linear infinite;

}

.photo {
    flex: 0 0 auto;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.photo img {
    max-width: 550px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;

}

@media (max-width: 768px) {
    .photo img {
        max-width: 300px;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }
}

.photo:hover {
    transform: scale(1.1);

}


@keyframes scroll {
    0% {
        transform: translateX(0);
     
    }

    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-100%);
     
    }
}


/* Workshop */
.workshops-section {
    text-align: center;
    margin-top: 60px;
}

.workshops-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;

}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.workshop {
    background-image: url(../img/bg-2.png);
    background-size: contain;
    padding: 15px;
    border: 2px solid #ddd;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #FFF;
}


.workshop:hover {
    transform: scale(1.05);
}

.way {
    margin-top: 80px;
    font-style: italic;
display: flex;
align-items: center;
justify-content: center;
    background-color: #2b231e;
    height: 120Px;

    font-size: 1.2rem;
    text-align: center;
 
    color: #fff;

}

.our-gallery {
    margin-bottom: 60px;
    font-weight: 800px;
    margin-top: 100px;
    font-size: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .way {
        padding: 25px;
        line-height: 1.2;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .text-with-drum {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }
}

/*about end*/











/*line-up*/
.program {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f4f4f9;
    border-radius: 8px;
}

.program-title {
    font-size: 2.5rem;
    font-family: 'hello';
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 50px;
    color: #481211;
    font-weight: bold;
}

.day-program {
    margin-top: 100px;
    background-color: #d7c2b1;
    padding: 20px;
    border-top-left-radius: 40Px;
    border-bottom-right-radius: 40Px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    z-index: -2;
}

.dag-informatie {
    width: 600px;
    text-align: left;
    margin-bottom: 70px;
    margin-left: 50px;
}

.date {
    font-size: 28px;
    position: absolute;
    text-align: center;

    font-weight: 200;

}

.background {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 30px;
    bottom: 40px;
    width: 300px;
    height: 70px;
    color: #000;

    border-top-left-radius: 20px;
   
    border-bottom-right-radius: 20px;
    background-color: #efd396;

}

.dag-informatie span {
    color: black;
    font-size: 2rem;
    font-family: 'hello';
    text-transform: uppercase;
    text-align: left;
}

.dag-informatie p {
    font-weight: 100;
    font-size: 1.2rem;
    margin-top: 30px;

}

.day-program ul {
    list-style-type: none;
    font-size: 1.5rem;
    flex: 0 0 40%;
    text-align: right;
}

.line-up {
    font-size: 1.5rem;
    text-align: center;

    font-family: "Be Vietnam Pro", serif;
    font-weight: 400;
    font-style: italic;
}

.festival-description {
    font-size: 1.2rem;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    margin: 0 auto;
    width: 800px;
    line-height: 1.6;
    margin-top: 60px;
    font-family: "Be Vietnam Pro", serif;
    font-weight: 400;
    font-style: italic;
}

.artists {
    text-align: center;
    font-family: 'hello';
    text-transform: uppercase;
    font-size: 1.5rem;
    width: 400px;
    margin: 0 auto;
    color: #2c231e;
}

.artist-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 580px;
    margin: 0 auto;
}

.hidden {
    opacity: 0;

    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}


.artist-photo:hover .hidden {
    opacity: 1;

    pointer-events: auto;

}



.artist-photo p {
    width: 100%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.8);

    color: #fff;
  
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 14px;
    text-align: center;
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 100;
    font-size: 1.3rem;
    padding-top: 70px;
}

.line-up h3 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 100;
}

span h3 {
    font-size: 2.6rem;
}

.artist-photos h5 {
    color: #2c231e;
    padding-top: 80px;
}

.artist-photo {
    width: 500px;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.artist-photos h5 {
    margin-top: 320px;
    font-size: 2rem;
    text-align: center;
    font-family: 'hello';
    text-transform: uppercase;
}

.artist1 {
    background-image: url(../img/artist1.jpg);
    background-size: contain;

    background-repeat: no-repeat;
}

.artist2 {
    background-image: url(../img/artist2.jpg);
    background-size: contain;

    background-repeat: no-repeat;
}

.artist3 {
    background-image: url(../img/artist3.jpg);
    background-size: contain;

    background-repeat: no-repeat;
}

.artist4 {
    background-image: url(../img/artist4.jpg);
    background-size: contain;


    background-repeat: no-repeat;
}

.artist5 {
    background-image: url(../img/artist5.jpg);
    background-size: contain;

    background-repeat: no-repeat;
}

.artist6 {
    background-image: url(../img/artist6.jpg);
    background-size: contain;

    background-repeat: no-repeat;
}

.line-get {
    margin-bottom: 0px;

}

@media (max-width: 768px) {
    .artist-photo {
        width: 200px;
        height: 200px;
     
    }

    .hidden {
        font-size: 12px;
       
    }

    .artist-photo h5 {
        font-size: 1.2rem;
        position: absolute;
        width: 200px;
        margin: 0 auto;
        left: 150px;
        bottom: -40px;
    }

    .dag-informatie span {
        color: black;
        font-size: 1.7rem;
        line-height: 1.3;
        font-family: 'hello';
        text-transform: uppercase;
        text-align: center;
    }


    .date {
        font-size: 1.5rem;
    }

    .dag-informatie {
        max-width: 95%;
        margin-bottom: 40px;
        margin-left: 0;
    }

    .festival-description {
        font-size: 1rem;
        width: 95%;
        text-align: left;
    }

    .artist-photos {
        flex-direction: column;

    }

    .artist-photo {
        width: 500px;
    }

    .artist1 {
        margin-bottom: 50px;
    }

    .artist3 {
        margin-bottom: 50px;
    }

    .artist5 {
        margin-bottom: 50px;
    }

    .artists {
        font-size: 1.2rem;
        width: 210Px;

    }

    .artist-photo p {
        width: 300px;
        height: 150px;
        font-size: 1rem;
        padding-top: 30px;
    }
}


/*einde van line-up*/








/*join us*/

.container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'hello';
    margin-bottom: 40px;
    text-align: center;
    color: #481211;
    margin-top: 100Px;
}

.ticket-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 80vw;
    margin: 0 auto;
}

.ticket-box {
    background-color: #2b231e;
    border-top-left-radius: 30Px;
    border-bottom-right-radius: 30Px;
    padding: 20px;
    max-width: 600px;
    height: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
}

.ticket-box h2 {
    color: #efd396;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    width: 300Px;
    font-weight: 400;

    margin: 0 auto;
}

.ticket-box p {
    color: #efd396;
    font-size: 1rem;
    margin-bottom: 20px;
    width: 300px;
    font-weight: 100;
    padding-top: 10px;
}

.ticket-box button {

    background-color: #6f6c56;
    color: #fff;
    margin-left: 130px;
    border-top-left-radius: 20Px;
    border-bottom-right-radius: 20Px;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.ticket-box button:hover {
    background-color: #5a5747;
}


.biletday {
    font-size: 1.8rem;
    font-family: 'hello';
    text-transform: uppercase;
    margin-bottom: 30px;
}

.biljet-info {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

.bilets {
    display: flex;
    flex-direction: column;

    margin: 0 auto;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.bilet {
    width: 486px;
    height: 171px;
    margin-top: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.338);
}

.bilet1 {
    background-image: url(../img/ticket1.png);


}

.bilet2 {
    background-image: url(../img/ticket2.png);

}

.bilet3 {
    background-image: url(../img/ticket3.png);

}


.bilet-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;

}

.flowers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
    padding-top: 30px;

}

.flower {
    background-image: url(../img/flower.png);
    width: 10vw;
    height: 10vh;
    background-size: contain;
    background-repeat: no-repeat;

}



.flower1 {
    transform: rotate(60deg);
}


.flower2 {
    transform: rotate(-60deg);
}

.flower3 {
    transform: rotate(90deg);
}

.flower4 {
    transform: rotate(-90deg);
}

.flower5 {
    transform: rotate(120deg);
}

.flower6 {
    transform: rotate(-120deg);
}


@media (max-width: 768px) {
    #bilets {
        gap: 100px;
        box-shadow: 0px 0px rgba(0, 0, 0, 0.338);

    }

    .flowers {
        display: none;
    }

    .bilet-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }

    .biletday {
        font-size: 1.2rem;
        text-align: center;

    }

    .biljet-info {

        max-width: 270px;

        text-align: center;

        font-size: 1rem;
        margin: 0 auto;
    }

    .bilet {
        width: 70vw;
        height: 20vh;
        background-position: center center;
        margin-top: 20px;
        background-size: contain;
        background-repeat: no-repeat;
        margin-bottom: 80px;
    }


}

/*einde van join us*/


/*shop page*/


.container {
    max-width: 1200px;
    margin: 0 auto;


}

.shop-title {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'hello';
    margin-bottom: 40px;
    text-align: center;
    margin-top: 100Px;
    color: #481211;
    text-transform: uppercase;
}

.shop-description {
    font-size: 1.2rem;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
    margin-top: 60px;
    font-family: "Be Vietnam Pro", serif;
    font-weight: 400;
    font-style: italic;
}

.category {
    margin-bottom: 40px;
    padding-top: 150px;
    text-align: center;
}

@media (max-width: 768px) {
    .category {

        text-align: left;
    }

    .shop-description {

        font-size: 1rem;
        text-align: left;
    }
}

.category h2 {

    margin: 0 auto;
    font-size: 1.7rem;
    color: #000;
    padding-bottom: 50Px;
    font-family: "Be Vietnam Pro", serif;
    font-weight: 200;



    margin-bottom: 20px;
}


.products {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.product {
    background-color: #FFF;

    width: 100vw;

    background-size: contain;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 60px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.product p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.product button {
    background-color: #6f6c56;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

.product button:hover {
    background-color: #5a5747;
}

/*end of the shop page*/






/*footer*/
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-size: contain;
    padding-bottom: 20px;
    margin-top: 200px;

    border: 3Px solid black;
    box-sizing: border-box;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

@media (max-width: 768px) {
    footer {
        width: 100%;
        margin: 0 auto;
        margin-top: 100Px;
        height: auto;
    }


    footer .sponsors {
        gap: 10px;
        padding-bottom: 0px;

    }

    footer .sponsor {
        width: 7vw;
    }

    .newsletter {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter h3 {
        text-align: center;
    }

    .newsletter input,
    .newsletter button {
        width: 90%;
    }
}

/* Newsletter */
.newsletter {
    text-align: center;
    margin: 40px 0;

}

.newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    border: 1px solid #2b231e;

    font-size: 14px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #716952;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #554d36;
}


footer p {
    padding-bottom: 20px;
    padding-top: 10Px;

}

#socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.social-item img {
    width: 5vw;
    height: 5vh;
    object-fit: contain;
    display: block;
}

.sponsors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-bottom: 20px;
    margin-top: 30Px;
}

.sponsor {
    width: 5vw;
    height: 5vh;
    background-size: contain;
    background-repeat: no-repeat;
}

.sponsor1 {
    background-image: url(../img/sp1.png);
}

.sponsor2 {
    background-image: url(../img/sp2.png);
}

.sponsor3 {
    background-image: url(../img/sp3.png);
}

.sponsor4 {
    background-image: url(../img/sp4.png);
}

.sponsor5 {
    background-image: url(../img/sp5.png);
}

.sponsor6 {
    background-image: url(../img/sp6.png);
}

.sponsor7 {
    background-image: url(../img/sp7.png);
}

.sponsor8 {
    background-image: url(../img/sp8.png);
}



.about-page {
    overflow-x: hidden;
}
.line{
    overflow-x: hidden;
}