*{
    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: #000000;
    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;
}

.tekst {
    font-family: Georgia, 'Times New Roman', Times, serif;
    max-width: 800px;
    min-height: 200px;
    background-color: #D9D9D9;
    color: #0f2e4d;
    text-align: center;
    margin: 0 auto 25px;
    
    padding: 30px 40px; /* puno prozračnije */
    border: 1px solid #a4a4a4; /* suptilan obrub */
    border-radius: 12px; /* zaobljeni rubovi */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* nova sjena */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tekst:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slideshow-container {
    background-color: #333;
    position: relative;
    overflow: hidden;
    max-width: 1900px;
    height: 500px;
   
  }
 
  .slides {
    display: flex;
  }
 
  .slides img {
    max-width: 1000px;
    height: 600px;
    min-width: 100%;
    object-fit: cover;
  }
 
.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;
}
 
.lutka {
    color: #000000;
}
footer {
    background-color: #80ABBE;
    color: #000000;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a :hover{
    background-color: #8790A2;
}


body {
    margin: 0;
    padding: 0;
    background-color: #C0D1DE;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 400px;
    background: rgb(75, 107, 150);
    padding: 30px;
    margin: 80px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 25px;
    text-align: center;
    color: #000000;
}
h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30x;
    color: #000000;
}
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 15px;
    font-weight: bold;
}

input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

button {
    margin-top: 20px;
    padding: 12px;
    background-color: #7f94a8;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #919191;
}

