/*
Theme Name: De Fleetenkieker
Theme URI: http://defleetenkieker.local
Author: Maxima Meß
Description: Neuer Webauftritt für die Website de Fleetenkieker
Version: 1.0
*/

h1 {
  color: #274395; 
  font-size: 2em;
  font-weight: bold; 
  margin-bottom: 0.1rem;
}

h2 {
  background-color: #e3efff; 
  color: #1a3e72;            
  padding: 0.6em 1em;
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
h3{
  color: #1a3e72;
  font-size: 1.6em;
}  

  
body {
  padding-left: 7%;
	padding-right: 7%;
	padding-top: 2%;
	padding-bottom: 5%;
}


  
/* Nav Styling */
.site-header {
    top: 0;
    background-color: #fff;
    padding: 10px 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    position: sticky;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

.logo img {
    height: 5em; 
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
	text-decoration: none;
	color: black;
	padding: 10px 15px;
	transition: all 0.3s ease;
}

.main-nav a:hover{
  background-color: #274395;
  color: white;
}

.main-nav li.current a {
	background-color: #274395;
	color: white;
}


.spritzer-right {
    position: fixed;
    top: 100px;
    left: -50px;
    height: 100vh; 
    z-index: -1; 
    pointer-events: none; 
    width: 250px; 
    object-fit: fill; 
  }
.spritzer-left {
    position: fixed;
    top: 150px;
    right: -43px;
    height: 100vh; 
    z-index: -1; 
    pointer-events: none; 
    width: 220px; 
    object-fit: fill; 
  }

  .site-footer {
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    color: #ffffff;
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 0;
  }
  
  .footer-container {
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: none; 
  }
  
  .footer-links {
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: #ffffff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }