@tailwind base;
@tailwind components;
@tailwind utilities;

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

@font-face {
    font-family:'Poppins';
	src: url('../fonts/PoppinsRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2212;
}

body h1{
    font-family: "poppins", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 30px;
}
body h2{
    font-family: "poppins", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-transform: uppercase;
    font-size: 2.25rem;
    line-height: 2.25rem;
    color: hsl(242, 26%, 24%)
    ;
}
body h3 {
    font-family: "poppins", monospace;
    font-weight: 400 ;
    font-style: normal;
    font-size: 24px;

}
body h4{
    font-family: "poppins", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 20px;

}
body p, body a{
    font-family: 'poppins', sans-serif;
}
.links, .leesmeer a, .links2{
    background-color: hsl(242, 26%, 24%);
    padding: .5rem 1.5rem;
    border: 3px solid hsl(242, 26%, 24%);
    color: hsl(0, 0%, 100%);
    transition: .3s;
}
.links:hover, .leesmeer a:hover{
    background-color: transparent;
    color: hsl(0, 0%, 100%);
}
.links2:hover{
    background-color: transparent;
    color: hsl(242, 26%, 24%);
}
body {
    color: #292c07;
}
.progress-container {
    width: 100%;
    height: 3.5px;
}
#progress-bar {
    height: 3.5px;
    background: #C62667;
    width: 0%;
}
.stickyBar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#navigationBar {
    position: fixed;
    top: 0;
    background-color: white; /* Change this to your desired background color */
    z-index: 1000; /* Adjust z-index as needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for visual distinction */
    transition: margin-top 0.3s ease; /* Add smooth transition for margin-top */
}

/* Adjust top margin when scrolled below the initial position */
#navigationBar.scrolled {
    margin-top: 0; /* Or any other value as needed */
}
.underlineHoverEffect:hover svg {
    width: 200%;

}
.underlineHoverEffect div h6{
    margin-top: 2rem;
}
nav ul li a:hover{
    text-decoration: underline;
}
.galerij-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Five columns */
    grid-auto-rows: minmax(100px, auto); /* Adjust row height as needed */
    gap: 10px; /* Adjust the gap between grid items */
}

.galerij-grid img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure images cover their container */
}
/*-------------------------------- HOMEPAGE ------------------------- */

.intro h2{
    margin-bottom: 1rem;
    font-size: 24px;
    text-transform: uppercase;
    color: hsl(0, 0%, 100%);
}
.intro2 h2{
    margin-bottom: 1rem;
    text-transform: uppercase;
}
@media (min-width: 640px){
    .intro h2{
        font-size: 30px;
        margin-bottom: 2rem;
    }

}
@media (min-width: 640px){
    .intro2 h2{
        margin-bottom: 2rem;
    }

}
.intro p, .intro2 p{
    font-size: 14px;
    line-height: 2;
    margin-bottom: 2rem;
}

@media (min-width: 640px){
    .intro p, .intro2 p{
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (min-width: 768px){
    .grid2fr3fr{
        grid-template-columns: 2fr 3fr;
    
    }
}



.footer-tekst h3{
    font-size: 28px;
    margin-bottom: 1rem;
}
.footer-tekst p{
    font-size: 14px;
}

.hero-events{
    box-shadow: 5px 5px 10px #00000063;
}


.header-text{
    transform: translate(-50%, -50%);
}

.verticalimg{
    grid-column: 3/4;
    grid-row: 1/3;
}
.horizontal3{
    grid-column: 1/3;
    grid-row: 2/3;
}
.vertical2img{
    grid-column: 1/2;
    grid-row: 3/5;
}
.horizontal6{
    grid-column: 2/4;
}


/*-------------------------------- OVER ONS ------------------------- */

.aboutus__content h4{
    color: white;
    opacity: .5;
}

.aboutus__content h3{
    color: #f7f5dd;
    font-size: 30px;
    width: 90%;
    line-height: 1.2;
}
@media (min-width: 1024px){
    .aboutus__content h3{
        width: 40%;
    }
}
.aboutus__content p{
    color: white;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.aboutus__content a{
    background-color: hsl(242, 26%, 24%);
    padding: .25rem 1rem;
    border: 3px solid hsl(242, 26%, 24%);
    color: #f7f5dd;
    transition: .3s;
    margin-top: 1rem;
    font-size: 14px;
}
.aboutus__content a:hover{
    background-color: transparent;
    color: #f7f5dd;
}