@font-face {
  font-family: 'TrajanPro';
  src: url('/fonts/TrajanPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TrajanPro';
  src: url('/fonts/TrajanPro-Bold.otf') format('truetype');
  font-weight: bold;
  font-style: normal;
}





/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




hr {
  border: solid #333333 1px;
  width: 850px;
}

.btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

h2 {
  color: #8D648B;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  color: #d1a769;
  line-height: 1.6;
}



/* Navbar styles */
/* Navbar styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ddafdc;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  font-family: 'TrajanPro', cursive;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  /* Background image text effect */
  color: #d1a769;
  filter: brightness(0.75);

}

p {
  text-decoration: none;
  font-family: 'TrajanPro', cursive;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  /* Background image text effect */
  color: #d1a769;

  filter: brightness(0.75);
}

nav a:hover {
  filter: brightness(1.5);
}


/* Center content styles */
body,
html {
  min-height: 100vh;
  width: 100vw;
  background-image: linear-gradient(to top, #ddafdc 0%, #fef9d7 100%);
  font-family: 'TrajanPro', serif;
  overflow-x: hidden;
  justify-content: center;
  font-style: italic;
  padding: 10px;
}

img {
  max-width: 100vw;
  max-height: 100vh;
}

.container {
  margin-top: 120px;
  margin-bottom: 60px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  position: relative; /* <- belangrijk om positionering te herstellen */
}


.container p {
  max-width: 850px;
  font-weight: bold;
}

/* Adjust padding and margins for smaller screens */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
    /* Slightly reduce width for small devices */
    padding: 15px;
    /* Add more inner padding */
  }
}



nav {
  padding: 10px 15px;
  /* Ensure navbar has smaller padding for mobile */
}

/* Add this to your existing CSS */



/* Adjust the image styling to ensure it respects container alignment */
.container img {
  display: block;
  /* Remove inline image alignment issues */
  max-width: 100%;
  /* Ensure image scales within the container */
  height: auto;
  /* Maintain aspect ratio */
}

/* Add media query adjustments for smaller screens */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
    /* Slightly reduce container width for mobile */
    padding: 15px;
  }
}

button {
  /* background: linear-gradient(to top, #ddafdc 0%, #fef9d7 100%) !important; */
  background-color: #f5d5ed;
  border-radius: 16px !important;
  padding: 12px !important;
  font-weight: bold;
  font-style: italic;
  cursor: pointer;
  border: none;
  color: #8D648B;
}

.overwrite {
  /* background: linear-gradient(to top, #ddafdc 0%, #fef9d7 100%) !important; */
  background-color: transparent !important;
  border: 3px solid #f5d5ed !important;
  border-radius: 16px !important;
  padding: 12px !important;
  font-weight: bold;
  font-style: italic;
  cursor: pointer;
  color: #8D648B;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button:hover {
  filter: brightness(1.1);
}

.logo {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
}

a {
  color: #8D648B;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
    max-width: 95%;
  }
}

 




.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center; /* centreert de afbeelding horizontaal */
  justify-content: center;
  margin-top: 20px;
}


.about-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-text {
  flex: 2 1 400px;
  text-align: left;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text {
  text-align: left;
  width: 100%;
  max-width: 800px;
}


.audio-samples {
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}