/* CSS Document */
/* mosgroen #88B04B */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}

body {
  margin: 20px;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
  font-size: 1.2em;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.6);
  position: relative; /* nodig voor stacking context boven ::before */
  z-index: 0;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://www.caricatunes.com/images/Loftrompetten.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
}

header {
  text-align: center;
  padding: 40px 20px;
}

strong {
  font-weight: bold;
}

a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.4s ease-in-out, transform 0.2s ease-in-out;
}

a:hover {
  color: white;
  transform: scale(1.2);
  text-shadow: 2px 2px 5px rgba(255, 215, 0, 0.8);
  font-weight: bold;
}

h1, h2, h3 {
  font-weight: 100;
  text-shadow: 2px 2px 5px rgba(255, 215, 0, 0.8);
  margin: 0;
}

h1 {
  font-size: 2.5em;
  color: #FFD700;
}

h2 {
  font-size: 2em;
  color: white;
}

h3 {
  font-size: 1.5em;
  color: white;
}

p {
  font-size: 1.2em;
  margin-top: 20px;
  color: white;
	overflow-wrap: break-word;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.6);
}

p i {text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.6);}

.container {
  max-width: 900px;
  width: 100%;
  padding: 20px;
}

blockquote {
  position: relative;
  margin-top: 1rem;
  font-style: italic;
  padding: 1rem 1rem 1rem 2rem; /* ruimte voor de border */
  background-color: rgba(255, 255, 255, 0.15)
}

blockquote p {
  font-size: 1.1em;
}

blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #FFD700, #FFD700, #FFD700);
  box-shadow:  2px 2px 5px rgba(255, 215, 0, 0.7);
}

.social-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-buttons a {
  font-size: 2em;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.btn-composer { color: #FFF; }
.btn-footer { color: #87CEEB; }
.btn-caricatunes { color: #FFD700; }
.btn-forrest { color: #88B04B; }
.btn-creatunes { color: #C154C1; }
.btn-academy { color: #87CEEB; }

.social-buttons a:hover {
  color: white;
  transform: scale(1.2);
}

.button-wrapper {
  text-align: center; /* centreert inline-block elementen zoals jouw button */
  margin-bottom: 1em;
}

.button {
  display: inline-block;
  background-color: #FFD700;
  color: white;
  padding: 0.8em 1.4em;
  border-radius: 1.2em;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease, font-weight 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: left;
  width: auto;
  white-space: nowrap;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
  font-weight: bold;
  color: white;
}

.mbutton-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em; /* optioneel: ruimte rond de knop */
}

.mbutton {
  display: inline-flex;
  align-items: center;
  gap: 0.6em; /* ruimte tussen icoon en tekst */
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8em 1.4em;
  border-radius: 1.2em;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease, font-weight 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}

.mbutton i {
  color: white; /* Icoon krijgt dezelfde kleur als tekst */
}

.mbutton:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2);
  color: white;
}

.mbutton:hover i {
  color: white; /* Zorgt ervoor dat het icoon niet van kleur verandert bij hover */
}

.responsive-image {
      display: block;
      margin: 0 auto;
      width: 50%;
      max-width: 150px;
	padding-bottom: 1em;
    }

footer {
  text-align: center;
  font-size: 0.8em;
}

@media (max-width: 768px) {
  body {
    font-size: 1em;
  }
	
  .container {
    padding: 10px;
  }
	/*.responsive-image {
        margin: 0;
      }*/
}

