
@font-face {
	font-family: 'Harmoni';
	src: url('assets/font/Harmoni.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}



/* ====================================== */
/* HEADER CONTENT ALIGNMENT (Logo + Text)  */
/* ====================================== */

.xheader-content {
	
    display: flex; /* <-- ACTIVATES SIDE-BY-SIDE LAYOUT */
    align-items: center; /* Vertically centers the logo and text block relative to each other */
    gap: 400px; /* Adds space between the logo and the text block */
    /* Ensure this is inside the existing header styling area */
	padding-left: 50px;
}

.xlogo {
    /* Sets a fixed size for the logo so it doesn't jump around */
	margin-left: 4em;
    width: 150px;  /* Adjust this width as needed */
    height: auto;  /* Maintains the aspect ratio */
    flex-shrink: 0; /* Prevents the logo from shrinking if space gets tight */
}

.xheader-content h1 {
	
	font-family: 'Harmoni','Arial', sans-serif; /* A standard, readable font */
    margin: 0; /* Removes default margin from H1 */
    font-size: 5em;
}

/* Because we wrapped the text, we might need to adjust margins/paddings on H1 and P inside it */
.xheader-content p {
	font-family: 'Harmoni','Arial', sans-serif; /* A standard, readable font */
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 1.2em;
}






/* ====================================== */
/* LAYOUT CONTAINERS (Sidebar & Main)        */
/* ====================================== */

.main-layout {
    display: flex; /* <-- This activates the side-by-side layout magic! */
    padding: 40px;
    max-width: 1200px; /* Keeps the whole site from getting too wide on huge monitors */
    margin: 0 auto; /* Centers the entire content block */
}

/* --- SIDEBAR STYLING --- */
.sidebar {
    flex: 0 0 30px; /* <-- This is key: It tells the sidebar to be exactly 250px wide, and not grow or shrink easily */
    padding-right: 100px;
    border-right: 1px solid rgba(0, 0, 0, 0.1); /* Visual separation line */
}

.sidebar h2 {
    color: #c0392b; /* Use a strong accent color for the sidebar title */
    margin-top: 0;
    border-bottom: 2px solid rgba(44, 62, 80, 0.7);
    padding-bottom: 10px;
}

.sidebar ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0;
}

.sidebar li a {
    display: block; /* Makes the whole area clickable */
    padding: 12px 0;
    text-decoration: none; /* Removes underline from links */
    color:anthracite;
    font-size: 1.1em;
    transition: color 0.2s;
}

.sidebar li a:hover {
    color: #e74c3c; /* Change link color on hover */
    background-color: rgba(0, 0, 0, 0.05); /* Slight background highlight on hover */
}


/* --- MAIN CONTENT STYLING (To take up remaining space) --- */
.main-layout main {
    flex-grow: 1; /* <-- This tells the main content area: "Take up ALL the extra available space!" */
    padding-left: 40px; /* Adds some spacing between sidebar and main content */
}

/* ====================================== */
/* RESPONSIVENESS (FOR MOBILE PHONES)     */
/* ====================================== */
@media (max-width: 400px) {
    /* On smaller screens, the layout should stack vertically again */
    .main-layout {
        flex-direction: column; /* Stacks items vertically */
    }

    /* Resetting sidebar sizing for mobile stacking */
    .sidebar {
        flex: 1 1 auto; /* Allows it to take full width when stacked */
        border-right: none; /* Remove the dividing line */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Add a separator line below it instead */
        padding-right: 0;
    }

    /* Restore padding/spacing when stacked vertically */
    .main-layout main {
        padding-left: 0; 
        padding-top: 30px; /* A bit of space between the sidebar menu and the content */
    }
}

/* -------------------------------------------------------------- */
	
	
	
	
	/* Simple CSS for basic styling */
        body {
            font-family: 'Arial', sans-serif; /* A standard, readable font */
            background-color: #f4f4f9; /* Light background gray */
            color: #333; /* Dark text color */
            margin: 0;
            padding: 0;
            text-align: center;
			
			/* === CORE BACKGROUND IMAGE PROPERTIES === */
			background-image: url('./pictures/gitarenwand.jpg'); /* <-- IMPORTANT: Change 'band_bg.jpg' to your actual filename! */
			background-size: cover;             /* This ensures the image covers the whole area without stretching weirdly */
			background-repeat: no-repeat;       /* Prevents the image from tiling/repeating if the screen is bigger than the image */
			background-attachment: fixed;       /* Keeps the background image fixed in place when the user scrolls */
			
        }
		
		body::before {
			content: "";
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: url('./pictures/achtergrondYF4.png'); /* <-- YOUR IMAGE HERE */
			background-size: cover;
			background-repeat: no-repeat;
			/* Apply the blur ONLY to this pseudo-element layer */
			filter: blur(7px); 
			z-index: -1; /* Puts the blurry layer BEHIND all other content (z-index: -1) */
		}

        header {
            background-image: url('./pictures/achtergrondkleur2.jpg');
			/* background-color: #2c3e50;  A dark, cool header color (Navy/Charcoal) */
			background-repeat: no-repeat ;
			 background-color: #777777; 
            color: anthracite;
            padding: 40px 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        header h1 {
            margin: 0;
            font-size: 3em;
            letter-spacing: 3px; /* Spacing out the letters */
        }

        header p {
            font-size: 1.2em;
            opacity: 0.8;
            margin-top: 5px;
        }

        .container {
            width: 80%;
            max-width: 1000px; /* Keeps content centered and readable */
            padding: 40px 20px;
        }

        h2 {
            color: #e74c3c; /* A contrasting accent color (Red/Orange) */
            border-bottom: 2px solid #ccc;
            padding-bottom: 10px;
            margin-top: 30px;
        }

        .section-box {            
			background-color: white;
            padding: 10px;
            margin-bottom: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .links a {
            display: inline-block; /* Makes links behave like blocks for better spacing */
            background-color: #3498db; /* A nice blue button color */
            color: white;
            padding: 12px 25px;
            margin: 10px;
            text-decoration: none; /* Removes the default underline from links */
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .links a:hover {
            background-color: #2980b9; /* Darker blue on hover */
        }
		.main-layout main {
			color: anthracite;
			margin: 0 7em ;
			padding-left: 0; 
			padding-top: 30px; /* A bit of space between the sidebar menu and the content */
		}
		
		
		
		/* Style all font awesome icons */
		.fa {
		  padding: 20px;
		  font-size: 50px;
		  width: 50px;
		  text-align: center;
		  text-decoration: none;
		}

		/* Add a hover effect if you want */
		.fa:hover {
		  opacity: 0.7;
		}

		/* Set a specific color for each brand */

		/* Facebook */
		.fa-facebook {
		  background: #3B5998;
		  color: white;
		}

		/* Twitter */
		.fa-twitter {
		  background: #55ACEE;
		  color: white;
		}


        footer {
            background-color: #333;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
        }