*{
    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: #80ABBE;
    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;
    min-height: 400px;
   background-color: #C0D1DE;
    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;
   background-color: #C0D1DE;
}
 
.content h2 {
    margin-bottom: 20px;
}
 
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
 
.gallery-container img {
    width: 33%;
    margin-bottom: 20px;
    border-radius: 5px;
}
 
.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;
}
 

.a :hover{
    background-color: #8790A2;
}
footer {
    background-color: #80ABBE;
    color: #000000;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


h1 {
    margin: 0;
}

.recenzija {
    background-color: #d6d1d1; 
    border: 1px solid #bbb;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto; 
    border-radius: 8px; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

.recenzija h2 {
    margin-top: 0;
    color: #2c3e50;
}

.ocjena {
    font-size: 25px;
    color: #000052;
}

.tekst {
    font-size: 1em;
    margin-top: 10px;
}

h2 {
    font-size: 25px;
    text-align: center;
    color: #000000;
}
h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30x;
    color: #000000;
}