
/* banner css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

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

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #00555c; 
}

body  {
	scroll-behavior: smooth;
}
/* Top Navigation Styles */
.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
}

.logo {
    width: 150px; /* Logo size */
}

/* Navigatiebalk */
/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
}

/* Navigatiebalk */
.navbar {
    background-color: none;
	padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease; 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;

}

.logo img {
    width: 140px;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.85; 
}

/* Navigatielinks */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px ;
    transition: border-bottom 0.3s ease, color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ec644e;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; 
}

.nav-links a:hover {
    color: #ec644e; 
}



/* Inschrijfknop */
.inschrijven-btn {
    background-color: #ec644e;
	width: 100%;
}


/* Hamburger Menu (Mobiel) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 2px;
    width: 25px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobiele navigatie */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 00px;
        left: 0;
        width: 100%;
        background-color: rgba(51, 51, 51, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        z-index: 999;
	
    }


    .nav-links.active {
        display: flex;
    }


}

/* Nav background on scroll */
body.scrolled .navbar {
    background-color: rgba(31, 31, 31, 0.9);
}


/* Cover Section Styles */
.cover {
    background-image: url('images/Kartbanner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 90vh; 
    color: rgb(255, 255, 255);
    position: relative;
}

.cover-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cover-content h1 {
    font-size: 100px; 
    margin-bottom: 20px;
}

.cover-content p {
    font-size: 30px; 
    color: #ec644e; 
    font-weight: bold; 
}

/* banner media */

@media screen and (max-width: 768px) {
    .cover-content h1 {
    font-size: 80px; 
    margin-bottom: 20px; 
    }

    .cover-content p {
    font-size: 25px; 
    color: #ec644e; 
    font-weight: bold; 
    }

}

/* inhoud css */

h1, h2 {
    color: #ffffff; 
}

/* Sectie voor de introductie */
#intro {
    text-align: left; 
    padding: 150px; 
    background-color: #00555C;
    color: white;
}

#intro h1 {
    font-size: 2.5rem;
}

#intro p {
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Reglementen en Spelregels sectie */
#rules {
    padding: 200px; 
    background: url('images/Achtergrondafbeelding.png') no-repeat center center/cover;
    color: white;
}

#rules h2 {
    font-size: 2.2rem;
    color: #ffffff;
}

#rules p, #rules ul {
    font-size: 1.2rem;
    color: #d3d3d3;
}


@media (max-width: 768px) {
    
    #intro {
        text-align: left; 
        padding: 50px 15px; 
    }

    #intro h1 {
        font-size: 2rem; 
    }

    #intro p {
        font-size: 1rem; 
    }

    /* Reglementen en Spelregels sectie op mobiele schermen */
    #rules {
        text-align: left; 
        padding: 100px 15px; 
    }

    #rules h2 {
        font-size: 1.8rem; 
    }

    #rules p, #rules ul {
        font-size: 1rem; 
    }

    #rules ul {
        margin-left: 15px; 
    }
}


/* Prijzen sectie */
#prijzen {
    background-color: #ecf0f1;
    padding: 100px; 
    padding-left: 200px;
    text-align: left; 
}

#prijzen h2 {
    font-size: 2.5rem; 
    color: #e67e22;
}

#prijzen p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#prijzen ul {
    list-style-type: none;
    padding: 0;
}

#prijzen li {
    font-size: 1.2rem;
    margin: 10px 0;
}


@media (max-width: 768px) {
    #prijzen {
        text-align: left; 
        padding: 50px 15px; 
    }

    #prijzen h2 {
        font-size: 2rem; 
    }

    #prijzen p {
        font-size: 1rem; 
    }

    #prijzen li {
        font-size: 1rem; 
    }
}


/* Footer css */

/* Footer Styles */
.footer {
    background-color: #000;
    color: white;
    padding: 40px;
    text-align: left;
    height: auto;
}
 
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-left: 150px;
}
 
.footer-section {
    margin: 20px;
    min-width: 200px;
    flex: 1;
    text-align: left;
}
 
.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}
 
.footer-section p {
    margin: 10px 0;
}
 
.divider {
    height: 4px;
    background-color: #ec644e;
    margin: 10px 0;
    width: 40px;
}
 
.social-media a {
    color: rgb(97, 105, 148);
    font-size: 30px;
    margin-right: 15px;
    text-decoration: none;
}
 
.social-media a:hover {
    color: #ec644e;
}
 
.google-map {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0px;
}
 
.google-map iframe {
    width: 80%;
    height: 250px;
    border: none;
    margin-top: 10px;
}
 
    @media only screen and (max-width: 768px) {
 
   .footer-content {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
    }
 
    .footer-section {
        margin: 10px 0;
        width: 100%;
        padding: 0;
    }
}
    .google-map iframe {
        width: 80%;
        height: 250px;
    }
