/* orange color: #FF6F59; */
/* Green color : #008080 */
/* skin color : #FBF7F4 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,300&display=swap');


/* DEFAULT VAlues */
body{
    background-color: #000000 !important;
}
*{
    margin: 0;
    padding: 0;
    color: #ffffff !important;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}


/* Classes */
.btn-container{
	margin: 5rem 2rem;
	display: flex;
	justify-content: space-around;
	width: 70%;
}
.primary-btn{
    text-decoration: none;
    font-size: 25px;
    background-color: #C5A028;
	border-radius: 10px;
	padding: 1.5rem;
    font-family: 'Maven Pro', sans-serif;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    font-weight: bold;
}
.primary-btn-extra-padding{
    padding: 1.5rem 4rem !important;
}
.highlighted-text{
    font-size: 1.5rem;
    font-family: 'Dosis', sans-serif;
    color: #ffffff !important;
    text-transform:uppercase ;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
.heading-text{
    font-size: 5rem;
	font-family: 'Roboto', sans-serif;
	color: #ffffff !important;
	text-transform: uppercase;
	text-align: center;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    font-weight: bold;
}
.big-text{
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    color: #ffffff !important;
    text-transform:uppercase ;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
.small-text{
    font-size: 1rem;
	font-family: 'Roboto', sans-serif;
	color: #ffffff !important;
	width: 90%;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}
.list-square{
    list-style: square;
}
.list-circle{
    list-style: circle;

}
/* NAVIGATION BAR */
#navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 20px 40px;
    font-family: 'Montserrat', sans-serif;
    background-color: #2d3748;
}

#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
#logo img {
    width: 100px;
}
.logo span,#logo span{
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.nav-ul a{
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 10px;
    transition: 0.5s ease-in-out;
    color: #ffffff;
}
.nav-btn{
    font-size: 22px;
    font-weight: 700;
    background-color: #C5A028;
    border-radius: 15px;
    padding: 1rem !important;
    color: #000000;
    border: none;
    margin: 0 0.5rem;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    font-weight: bold;
}
#navbar>div{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.nav-ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
}
#three-lines {
    display: none; 
    font-size: 45px; 
    color: #ffffff;
}

/* SIDE NAV BAR */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    background-color: #2d3748;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 50px;
}

.sidenav ul {
    display: flex;
    flex-direction: column;
    height: 350px;
    text-align: center;
    justify-content: space-between;
}

.sidenav a {
    text-decoration: none;
    font-size: 45px;
    color: #ffffff;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #C5A028;
}

.sidenav .closebtn {
    position: absolute;
    top: 5px;
    left: 25px;
    font-size: 55px;
    margin-right: 15px;
}


/* DROPDOWN CONTAINER*/

.dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 22px;
    font-weight: 700;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 14px 16px;
    background-color: #2d3748;
    font-family: inherit;
    display: flex;
	align-items: center;
    margin: 0;
}
.dropdown .dropbtn svg{
    fill: #ffffff;
    margin: 0 5px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2d3748;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #C5A028;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    transition: 0.5s ease-in-out;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* FOOTER  */
#footer{
    background-color: #2d3748;
    padding: 3rem 0;
}
.footer-container{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 90%;
	margin: auto;
}
.footer-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-logo-section{
    width: 30%;
}
.footer-section img{
    width: 250px;
}
.logo-text{
    font-size: 2.6rem !important;
    color: #ffffff !important;
}
.footer-big-text{
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
	color: #C5A028;
	text-transform: uppercase;
    margin: 1rem 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
.social-media-container {
    margin: 2rem 0;
}
.social-media-container a{
    margin: 0.5rem;
    padding: 0.5rem;
}
.social-media-container svg{
    width: 40px;
    height: 80px;
    fill: #ffffff;
}
.footer-btn{
    width: 25%;
	text-align: center;
	text-decoration: none;
    background-color: #C5A028;
    color: #000000 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    font-weight: bold;
}
.footer-section-small-img{
    width: 100px !important;
    border-radius: 10px;
}
.footer-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text-section a {
    margin: 0 0.5rem;
    color: #ffffff;
}
hr{
    margin: 2rem 0;
    background-color: #4a5568;
    border: none;
    height: 1px;
}

/* Fix typewriter text color - EXTRA SHINY */
#intro-animated-text {
    color: #ffffff !important;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

@media(max-width:700px){
    #navbar {
        padding: 0px 5px
    }
    .nav-ul li{
        display: none;
    }
    .sidenav ul{
        align-items: center;
        list-style: none;
    
    }
    .sidenav a {
        font-size: 28px;
	    color: #ffffff;
    }    
    .dropdown .dropbtn{
        background-color: #2d3748;
        font-size: 22px;
        padding: 0px;
        color: #ffffff;
    }
    .dropdown-content{
        background-color: #2d3748;
    }
    #three-lines{
    display:block;
    }
    #footer{
        padding: 1rem 0;
    }
    .footer-container {
        flex-direction: column;
    }  
    .footer-section {
        margin: 2rem 0.5rem;
    }
    .footer-logo-section {
        width: 100%;
    }
    .footer-text-section p{
        font-size: 10px;
    }   
    .footer-btn {
        width: 40%;
    }
    hr {
        margin: 1rem 0;
    }
    
    body {
        background-color: #000000 !important;
    }
}

/* ===== DESKTOP FIX - ADDED AT THE END ===== */
/* Force black background on ALL desktop pages */
@media (min-width: 701px) {
    /* Force black on entire page */
    html, body {
        background-color: #000000 !important;
        color: #ffffff !important;
    }
    
    /* Force black on ALL direct children of body (except navbar/footer) */
    body > *:not(#navbar):not(#footer):not(.sidenav) {
        background-color: #000000 !important;
        color: #ffffff !important;
    }
    
    /* Force black on common container classes from ALL pages */
    .container,
    .content,
    .main-content,
    .page-content,
    .wrapper,
    .section,
    .text-content,
    .text-area,
    #first-section,
    #second-section,
    #third-section,
    #fourth-section,
    #Reserveringsformulier,
    #reservation-form,
    #reserve-text-section,
    .form-group,
    .why-us-container,
    .why-us-card,
    .first-text-section,
    .image-section,
    .section-text,
    .img-section,
    .text-section {
        background-color: #000000 !important;
        color: #ffffff !important;
    }
    
    /* Force white text on ALL elements except buttons */
    body *:not(.primary-btn):not(.nav-btn):not(.footer-btn):not(.form-submit-btn):not(.primary-btn *):not(.nav-btn *):not(.footer-btn *):not(.form-submit-btn *) {
        color: #ffffff !important;
    }
}