
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
   
    margin: 0;
    padding: 0;
    background: #fdf2ee url('images/bg.png') no-repeat center top;
    background-size: cover;
    color: #333;
	font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
	letter-spacing: 1px;
    font-weight: 300;
    
    font-style: normal;
}

header {
    text-align: center;
    padding: 30px 20px 10px;
    position: relative;
}

.logo {
    width: 200px;
    max-width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tagline {    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    display: block;
    font-size: 1.1em;
    font-style: italic;
    color: #555;
    margin-top: -7px;
    margin-bottom: 25px;
}

nav {
    padding: 0 22px;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent, #00000055, transparent);
  border-image-slice: 1;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
    color: #000;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

ul {
    line-height: 33px;
}


main {
	    max-width: 777px;
    margin-left: auto;
    margin-right: auto;
    padding: 11px;
    text-align: center;
}

footer {
    background: #d3c0b0;
    text-align: center;
    padding: 20px;
}

h1, h2, h3, h4, h5, h5 {font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;}
  
p {
    line-height: 33px;
    margin-bottom: 33px;
}
  a {
    color: #000;
}

button[type="submit"] {
  background-color: #d8c2b2; /* zachte beige tint die bij je achtergrond past */
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 25px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin-top: 11px;
}

button[type="submit"]:hover {
  background-color: #c8ae99; /* iets donkerder voor hover */
  color: #3a3a3a;
  transform: translateY(-2px);
}



hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #00000055, transparent);
  margin: 2.5em auto;
  width: 80%;
}


textarea {
    text-align: center;
}

input {
padding: 10px;}

  
  /* Mobiel menu */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        margin: 0;
    }

    nav ul.show {
        display: flex;
        background: rgba(255, 255, 255, 0.5);
        padding: 10px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
	
	ul {    padding-inline-start: 0px;}
	
	main {
    padding: 11px 33px;}
	
	h1 {font-size:33px;}
}
