body{
    font-family: Verdana;
    overflow: scroll;
}

/* Header Bereich*/
nav ul li{
    display: inline;
    font-size: medium;
}
nav li{
    padding: 1em;
    font-weight: bold;
}
nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
header {
    background-image: url(images/LogoUnipics-100x.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
/*Navigation austesten*/
/* Dropdown Button */
.dropbtn {
    list-style-type: none;
    color: black;
    background-color: white;
    padding: 16px;      
    border: none;
    font-weight: bold;
    font-size: inherit;
}             

/* The container <div> - needed to position the dropdown content */
.dropdown {
    background-color: white;
    position: relative;
    display: inline-block;
    font-size: inherit;
    -webkit-text-size-adjust: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: white;
    font-size: small;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #721C24; color: white;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #721C24; color: #FFFFFF;}
/*---------------------------------------------------------------------------------------------*/
.dropbtnbutton {
    background-color: #721C24;
    color: white;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    list-style-type: none;
    border: none;
    font-weight: bold;
    font-size: medium;
}
.dropdownbutton {
    background-color: #721C24;
    position: relative;
    display: inline-block;
    font-size: medium;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-contentbutton {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-contentbutton a {
    color: black;
    background-color: white;
    font-size: medium;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: small;
}

/* Change color of dropdown links on hover */
.dropdown-contentbutton a:hover {background-color: #721C24; color: white;}

/* Show the dropdown menu on hover */
.dropdownbutton:hover .dropdown-contentbutton {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdownbutton:hover .dropbtnbutton {background-color: #721C24; color: white;}
/*--------------------------------------------------------------------------*/
/* Anzeige der Links */
:visited{
    color: #000000;   
}
a:link{
    text-decoration: none;
    color: #000000;
}
/*--------------------------------------------------------------------------*/
/* Main Bereich */
main{
    margin-left: 40px;
}

/*--------------------------------------------------------------------------*/
/* Footer Bereich */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Erlaubt Zeilenumbruch */
    margin-top: 100px ;vertical-align: bottom;
}

.socialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Nimmt den verf?gbaren Platz ein */
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}
.abstand{
    padding:20px;
}
    

/*--------------------------------------------------------------------------*/
/* Wiederverwendbares */
nav .button{
    background-color: #721C24;
    color: white;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
}
/*--------------------------------------------------------------------------*/
/* Content Home */
.pictureHome
{
    /*position: absolute;  */
    height: 100%;
    object-fit: scale-down;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;  
}
/*--------------------------------------------------------------------------*/
/* Content Turnierfotografie*/
.turnierfotografie{
    
    .shop{
        border-bottom: solid 3px #721C24;
        text-align: center;
        margin-bottom: 50px;
        margin-right: 20px;
        
        a{
            background-color: #721C24;
            color: #FFFFFF;
            padding: 10px 20px;
            margin: 50px;
            border-radius: 30px;
        }
    }
    .info{
        display: flex;
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: space-evenly;
         margin-right: 40px;
         align-items: center;
         
         .item{
             width: 600px;
             padding: 0px;
             background-color: #721C24;
             height: 840px;
             margin: 20px 0px;
              
              .head { 
                text-align: center;
                color: #FFFFFF;
                padding: 0px 0px;
              }
              .pic { 
                width: 100%;
                margin: 0px;
                padding: 0px;
              }
              .text { 
                text-align: center;
                color: #FFFFFF;
                padding: 10px 0px;
                
                a{
                    color: #FFFFFF;
                    text-decoration: underline;
                }
              }
         }
    }
}
/*--------------------------------------------------------------------------*/
/* Content UeberUns*/
.ueberuns{
    display: grid;
    grid-template-areas:
    'leftup rightup rightup'
    'leftbottom leftbottom rightbottom';
    gap: 50px;
}
.picLari{
    grid-area: leftup;
    width: 375px;
    margin-bottom: 100px;
    vertical-align: middle; 
      
}
.textLari{
    grid-area: rightup;
    vertical-align: middle;
    padding-top: 70px;
    
}
.picFabi{
    grid-area: rightbottom;
    width: 375px;
    height: 500px;     
}
.textFabi{
    grid-area: leftbottom;
    padding-top: 70px;
}
/*--------------------------------------------------------------------------*/
/* Content Kontakt*/
.kontakt{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.kontakt > img{
            height: 200px;
            margin: 100px;
            padding: 100px;
        }
 /*--------------------------------------------------------------------------*/
/* Portfolios */
.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;

    .line-container {  /* Linie mit Schrift darin */
        display: flex;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 20px;
        width: 100%;
        .line {
            flex-grow: 1;
            height: 4px;
            background-color: #721C24;
            margin-right: 20px; /* Abstand zwischen Linie und Text */
            margin-left: 20px;
            min-width: 50px;
        }

        .text {
            white-space: nowrap; /* Verhindert, dass der Text umbrechen kann */
            font-weight: bolder;
            color: #721C24;
        }
    }
    .grid-container {
      columns: 5 200px;
      column-gap: 1.5rem;
      width: 90%;
      margin: 0 auto;
      div {
        width: 150px;
        margin: 0 1.5rem 1.5rem 0;
        display: inline-block;
        width: 100%;
        padding: 5px;

        img {
          width: 100%;

        }
      }
    }
}
 /*--------------------------------------------------------------------------*/
/* Content FAQ*/ 
.FAQ{
    padding-right: 10px;
    
    summary{
        padding: 10px 10px;
        border-top : solid #721C24 1px;
        font-weight: bold;
    }
    div{
        background-color: #721C24;
        color: #FFFFFF;
        padding: 10px 0px 20px 30px;
    }
}
 /*--------------------------------------------------------------------------*/
/* Preise*/
.preise{
    .art{
        text-align: center;
        margin: 20px;
        
        .anzeigen{
            display: flex;
            justify-content: space-evenly;
            margin: 20px 0px;
            gap: 10px;
            flex-direction: row;
            flex-wrap: wrap;
            
            .container{
                width: 400px;
                height: 520px;
                background-color: #721C24;
                .head{
                text-align: center;
                color: #FFFFFF;
                font-weight: bold;
                padding: 10px 0px;   
                }
                img{
                    width: 100%;   
                }
                .txt{
                    text-align: center;
                    color: #FFFFFF;
                    padding: 10px 10px;    
                }
                a{
                    text-decoration: underline;
                    color: #FFFFFF;
                }
            }  
        }
    }
    u{
       text-decoration: underline;
       font-weight: bold; 
    }
    ul{
        list-style-type:disc;
        margin: 10px;
    }
    .line-container {  /* Linie mit Schrift darin */
        display: flex;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 20px;
        .line {
            flex-grow: 1;
            height: 4px;
            background-color: #721C24;
            margin-right: 20px; /* Abstand zwischen Linie und Text */
            margin-left: 20px;
        }
    
        .text {
            white-space: nowrap; /* Verhindert, dass der Text umbrechen kann */
            font-weight: bolder;
            color: #721C24;
        }
    }
    .extras{
        display: flex;
        justify-content: space-evenly;
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        .item{
            width: 650px;
            height:510px;
            background-color: #721C24;
            .head{
                color: #FFFFFF;
                text-align: center;
                font-weight: bold;
                padding: 15px;
            }
            img{
                width: 100%;    
            }
            .text{
                color: #FFFFFF;
                text-align: center;
                padding: 15px;
            }
        }
    }
    .prints{
        .bspBilder{
            display: flex;
            justify-content: space-evenly;
            gap: 10px;
            flex-direction: row;
            flex-wrap: wrap;
            width: 100%;
            img{
                width: 400px;
            }
        }
    }
    
}



/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Handy~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media screen and (max-width: 1024px){

    /*--------------------------------------------------------------------------*/
    /* Content ?berUns*/
    .ueberuns{
        display: grid;
        grid-template-areas:
        'leftup' 
        'rightup'
        'rightbottom'
        'leftbottom';
    }
    .picLari{
        grid-area: leftup;
        width: 100%;
        height: 100%;
        align-items: center;
        margin-bottom: 100px;
        vertical-align: middle;
    
    }
    .textLari{
        grid-area: rightup;
        vertical-align: middle;
        padding-bottom: 100px;
    
    }
    .picFabi{
        grid-area: rightbottom;
        width: 100%;
        height: 100%;
        align-items: center;
    }
    .textFabi{
        grid-area: leftbottom;
        padding-bottom: 100px;
    }
     /*--------------------------------------------------------------------------*/
    /* Content Turnierfotografie*/
   .turnierfotografie{
    display: grid;
    grid-template-areas:
    'leftup '
    'rightup'
    'leftbottom '
    'rightbottom';
    }
    .tftextKontakt{
        grid-area: leftup;
        text-align: center;
    }
    .tfbuttonKontakt::before{
        grid-area: rightup;
        background-color: #721C24;
        padding: 15px;
        color: white;
        margin-bottom: 100px;
        text-align: center;
    }
    .tftextTurnier{
        grid-area: leftbottom;
        margin-top: 100px;
        text-align: center;
    }
    .tfbuttonTurnier{
        grid-area: rightbottom;
        background-color: #721C24;
        padding: 15px;
        color: white;
        text-align: center;
    }
}