/*Universal Styles */

body{
    background-color: black;
    font-family: Helvetica;
    color: seashell;
    opacity: 0.9;
    width: 100%;
    margin: 0 auto;
    padding-top: 69px; 
}

h1{
    color: seashell;
    font-family: Helvetica;
}

h2{
    color: seashell;
}
h3, h4{
    color: seashell;
}


.logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-image{
    height: 50px;
    width: auto;
    margin-left: 10px;
    margin-bottom: 10px;
}

.header{
    background-color: black;
    color: seashell;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 10px;
    border-bottom: 1px solid seashell;
    width: 100%;
    height: 69px;
    opacity: 0.9;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.nav-bar{
    display: inline-flex;
    margin-right: 20px;

}

.nav{
    list-style: none;
    display: flex;
    gap: 20px; /* Abstand zwischen den Elementen */
    justify-content: end;
    align-items: end;
}

/* Optional: Styling für die List Items */
.nav li {
    padding: 10px;
    font-size: 22px;
    font-family: Helvetica;
    border: 0.5px solid seashell;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav li:hover {
    background-color: seashell;
    color: black;
    cursor: pointer;
    transform: scale(1.05);
}


/* HEADER STYLES END */
/* MAIN STYLES START */

.background-image{
    top: 0;
    display: flex;
    justify-content: center;
    height: 700px;
}

.muesli-image{
    height: 700px;
    width: 1200px;
    object-fit: cover;
}

/* Muesli Bild Ende */
.page1-text{
    display: inline-flex;
}

.text-block{
top: 300px;
width: 100%;
position:absolute;
display: flex;
color: seashell;
justify-content: center;
align-items:center;
background-color: black;
opacity: 0.9;
flex-direction: column;
}

.top{
    display: flex;
    margin-bottom: 0;
}

.bottom{
    display: flex;
}

/*PAGE 1 ENDE */
/* PAGE 2 START */

.page2-header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: seashell;
    font-family: Helvetica;
    flex-direction: column;
    margin-top: 50px;;
}

.p2top{
    max-width:1400px;
    margin-bottom: 0;
}


.teesorten{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}



.Tee1, .Tee2, .Tee3, .Tee4, .Tee5, .Tee6{
    display: flex;
    flex: 0 1 300px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
}
.tee-image:hover{
    filter: brightness(70%);
    transform:scale(1.02);
}

.tee-image {
    height: 200px;
    width: 300px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}


.page3{
    background-image: url("./media/img-locations-background.jpg");
    background-position: center;
    height: 500px;
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    flex-direction: column;
}


.page3-header{
    display: inline-flex;
}


.locations{
    display: flex;
    gap: 40px;
    justify-content: center;
}

.downtown:hover,
.east-bayside:hover,
.oakdale:hover{
    transform: scale(1.02);
    cursor: pointer;
}

.downtown, .east-bayside, .oakdale{
    display: inline-flex;
    width: 300px;
    height: 300px;
    background-color: black;
    color: seashell;
    text-align: center;
    transition: all 0.3s ease;
}

.dtul, .eabs, .oakd{
    list-style: none;
    line-height: 50px;
    margin-top: 0;
    width: 100%;
    margin-right: 30px;
}





.footer{
    display: flex;
    flex-direction: column;
}


.footer-top{
    width: 100%;
    text-align: center;
}



/* MAIN STYLES END */
/* Media Queries für Responsive Design */
@media screen and (max-width: 768px) {
    /* Header Anpassungen */
    .header {
        flex-direction: column;
        height: auto;
        align-items: center;
        position: relative;
    }

    .nav-bar {
        margin: 10px 0;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }

    /* Body Padding anpassen */
    body {
        padding-top: 0;
    }

    /* Mission Section */
    .muesli-image {
        width: 100%;
        height: 500px;
    }

    .text-block {
        padding: 15px;
        top: 450px;
        width: 100%;
    }

    /* Tee Sektion */
    .teesorten {
        padding: 10px;
    }

    .Tee1, .Tee2, .Tee3, .Tee4, .Tee5 {
        flex: 0 1 100%;
        max-width: 300px;
    }

    /* Locations Sektion */
    .page3 {
        width: 100%;
        height: auto;
        padding: 20px 10px;
        background-size: cover;
    }

    .locations {
        flex-direction: column;
        gap: 20px;
    }

    .downtown, .east-bayside, .oakdale {
        width: 90%;
        margin: 0 auto;
    }
}

/* Für sehr kleine Bildschirme */
@media screen and (max-width: 480px) {
    .nav li {
        font-size: 18px;
        padding: 8px;
    }

    h2 {
        font-size: 24px;
    }

    h4 {
        font-size: 16px;
    }

    .text-block {
        padding: 10px;
        top: 500px;
    }
}