/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow", sans-serif;
    font-weight: 450; /* Von 300 auf 450 für einen kräftigeren normalen Text */
    font-size:18px; /* Erhöhe die Schriftgröße für normalen Text */
    line-height: 1.8; /* Leicht vergrößerte Zeilenhöhe für bessere Lesbarkeit */
    color: #333;
}

/* Header */
header {
    background-color: #9473B2;
    color: white;
    padding: 10px 20px; /* Verringere die Header-Höhe */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px; /* Höhe des Headers reduzieren */
}

header .logo img {
    height: 40px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px; /* Gleiche Höhe wie das Logo */
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: white;
}

/* Überschriften-Anpassung */
h1, h2, h3 {
    font-family: "Barlow", sans-serif;
    font-weight: 700; /* Fett für Überschriften */
}

p {
    font-family: "Barlow", sans-serif;
    font-weight: 450; /* Normalgewicht für Absätze */
    font-size: 18px; /* Einheitliche Schriftgröße für Absätze */
}


/* Anwendung der CSS-Klassen */
.barlow-regular {
    font-family: "Barlow", sans-serif;
    font-weight: 450;
}

.barlow-bold {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
}

.barlow-extralight {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
}

/* Über uns und Bier Section Textangleichung */
.about p, .beer p {
font-weight: 450;
    font-size: 18px; /* Einheitliche Schriftgröße für Absätze */
}

/* Über uns Section */
.about {
    padding: 100px 20px;
    background-color: #f5f5f5;
a}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert alle Elemente in der Spalte */
    text-align: center; /* Falls auch der Text zentriert werden soll */
}


.about-images {
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */
    align-items: center; /* Falls du es auch vertikal zentrieren möchtest */
    margin-top: 20px;
}

.about-images img {
    width: 130px;
    height: 130px; /* Gleiche Höhe setzen, wenn es quadratisch sein soll */
    object-fit: contain; /* Beibehaltung des Seitenverhältnisses */
}


/* Hüingser Helles Section */
.beer {
    padding: 100px 20px;
}

.beer-logo img {
    width: 400px; /* Die Bildgröße für das "Hüingser Helles"-Logo */
    margin-bottom: 20px;
}

nav ul {
    list-style-type: none;
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #9473B2;
    padding: 10px;
    border-radius: 0px;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Show Menu when Hamburger is clicked */
nav.show ul {
    display: block;
}


nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Show Menu when Hamburger is clicked */
nav.show ul {
    display: block;
}

/* Versteckter Startzustand */
.fade-in {
    opacity: 0;
    transform: translateY(30px); /* Startposition (30px unterhalb der ursprünglichen Position) */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Animationseffekte */
}

/* Sichtbarer Endzustand */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0); /* An der Zielposition */
}

.hero {
    background-color: #F5F5F5;
    text-align: center;
    padding: 100px 50px 50px; /* Adjusted for fixed header */
}

.hero img {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 2.5em;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #FCDD43;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.about {
    background-color: #FE4C4C;
    color: white;
    padding: 40px;
    text-align: center;
}

.beer {
    background-color: #F5F5F5;
    padding: 40px;
    text-align: center;
}

.beer img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.beer h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact {
    background-color: #5FF6A3;
    color: black;
    padding: 40px;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form label {
    display: block;
    margin-bottom: 5px;
}

.contact form input, .contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

.contact form .btn {
    display: block;
    width: 100%;
    background-color: #000000;
    color: white;
    font-size: 1.2em;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

footer {
    background-color: #FFE066;
    color: black;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: black;
    text-decoration: none;
}

footer p {
    margin-bottom: 10px;
}