*{
    box-sizing: border-box;
}/*osigurava nam da širina i visina elementa uključuju `padding` i `border`, sprječavajući neželjene povećanja dimenzija. */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
    background-color: #C0D1DE;  /*pravilan oblik, boja, detalji i konstrukcija cijele stranice*/
}
 
header {
    background-color: #80ABBE;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /*boja, detalji i konstrukcija zaglavlja*/
}

header .a {
    display: flex;
    font-family: Georgia, 'Times New Roman', Times, serif;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    flex-grow: 1; /*boja, detalji za linkove u zaglavlju*/
}

header .a a {
    background-color: #80ABBE;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    white-space: nowrap;  
}

header .a a:hover {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #6c98a8;  /*pseudoklasa hover za promjenu boje kad prijeđemo preko*/
}
 .logo{
    flex-basis: 400px;
    display: flex;
    flex-grow: 1;
    justify-content: center;
 }
 header a{
    background-color: #A79277;
    color: #fff;
    text-decoration: none;
    padding: 5px;
   
 }
 
header div:first-child {
    display: flex;
    align-items: center;
}
header h1{
    margin:45px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   
   
}
main{
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.slider {
    display: flex;
    max-height: 400px;
    background-color: #eee;
    flex-wrap: wrap;
}
 
.slider img {
    max-width: 700px;
    max-height: 400px;
    object-fit: cover;
    scroll-snap-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

 
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
 
.content h2 {
    margin-bottom: 20px;
}
 
.gallery-container {
    display: flex;
    flex-wrap: wrap;
}
 
.gallery-container {
    max-width: 80%;
    max-height: 400px;
    flex-basis: 100px;
    object-fit: cover;
    scroll-snap-align: center;
    margin: 3 auto;
    margin-top: 5px;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    border: 5px solid #858383;
}
 
.menu-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
 
.menu-container h3 {
    margin-bottom: 10px;
}
 
.menu-container ul {
    list-style: none;
    padding: 0;
}
 
.menu-container li {
    margin-bottom: 5px;
}
 
footer {
    background-color: #80ABBE;
    color: #000000;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.a :hover{
    background-color: #D1BB9E;
}

h2 {
    font-size: 25px;
    text-align: center;
    color: #000000;
}
h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30x;
    color: #000000;
}