/* Globals  */

html, body 
{
  background: #f3f3f3;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  color: #333333;
  margin: 0;
  padding: 0;
  line-height: 27px;
}

hr {
    border: none;
    height: 1px; /* Adjust this value to control the thickness of the <hr> */
    background-color: #d1d1d1;
    margin: 20px 0;
}

#header {
	background-color: #AA0000;
	padding: 20px 0;
	margin-bottom: 0px;
	width: 100%;
	display: flex;          /* Enables flexbox */
	justify-content: center; /* Centers child items horizontally */
	align-items: center;     /* Centers child items vertically */
}

#logo {
	font-size: 28px;
	font-weight: bold;       /* Fixed the typo here */
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* In je bestaande #logo-styling: */
#logo {
  display: flex;           /* zet inline-content in flexbox */
  align-items: center;     /* verticale uitlijning midden */
}

/* Nieuwe styling voor je logo-afbeelding */
#logo-img {
  height: 40px;            /* kies een hoogte die past bij je header */
  margin-right: 10px;      /* ruimte tussen logo en tekst */
  display: block;          /* voorkomt ongewenste whitespace */
}


.container {
    max-width: 960px;
    margin: auto;
    padding: 15px; /* Optional: Adds some spacing inside the container */
    text-align: left;
    background-color: #fff;
    border-radius: 12px;
}

p, h2, div, h1 {
    margin-bottom: 20px; /* Adjust as necessary */
}

h1 {
font-size: 28px;
}

ul {
    padding-left: 0;
}

.footer {
	background-color: #000;
	border-radius: 12px;
	padding: 15px;
	color: #fff;
	text-align: center;
}
	.footer a {
		color: #fff;
	}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;  /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#film_info {
	margin-bottom: 40px;
}

#film_info h1 {
	font-size: 25px;
}

#film_info h2 {
	font-size: 18px;
	font-style: italic;
	font-weight: normal;
}

#film_info h3 {
	font-size: 17px;
	padding: 0;
	margin: 0 0 8px 0;
}

#film_info p {
	padding: 0;
	margin: 0;
}

/* Mobile Friendly adjustments */
@media only screen and (min-width: 960px) {
    .container {
        padding: 10px; /* Reduce padding on smaller screens */
    }
    
    #header {
    	margin-bottom: 20px;
    }
    
    #logo {
    	font-size: 35px;
    }
    
    #film_info h1 {
		font-size: 40px;
		line-height: 40px;
	}

}
