/* RESET */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Segoe UI', Arial, sans-serif;
   line-height: 1.6;
   background-color: #fffaf5;
   color: #333;
   display: flex;
   flex-direction: column;
   min-height: 100vh;
}

/* HEADER & NAVIGACIJA */
header {
   background: linear-gradient(135deg, #e63946, #ff7f50);
   color: white;
   padding: 20px;
   position: sticky;
   top: 0;
   z-index: 1000;
   box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
header h1 {
   text-align: center;
   font-size: 2rem;
   letter-spacing: 2px;
   margin-bottom: 10px;
}

/* NAVIGACIJA */
nav ul {
   list-style: none;
   display: flex;
   justify-content: center;
   gap: 25px;
   background: rgba(255, 255, 255, 0.15);
   padding: 10px 20px;
   border-radius: 50px;
   backdrop-filter: blur(10px);
}
nav a {
   text-decoration: none;
   color: white;
   font-weight: 600;
   font-size: 1rem;
   padding: 8px 15px;
   border-radius: 20px;
   transition: all 0.3s ease;
}
nav a:hover {
   background-color: rgba(255, 255, 255, 0.25);
   color: #ffd700;
}

/* MAIN SADRŽAJ */
main {
   flex: 1;
   padding: 30px 20px;
   max-width: 1100px;
   margin: auto;
}
main h2 {
   margin-bottom: 15px;
   color: #e63946;
   font-size: 1.8rem;
   border-left: 5px solid #ff7f50;
   padding-left: 10px;
}
main img {
   max-width: 100%;
   height: auto;
   margin-top: 15px;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.2);
   transition: transform 0.3s ease;
}
main img:hover {
   transform: scale(1.03);
}

/* LISTE MENIJA */
ul {
   margin: 10px 0 20px 20px;
   line-height: 1.8;
}

/* FORMA */
form {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 450px;
}
input, textarea, button {
   padding: 12px;
   border: 1px solid #ddd;
   border-radius: 8px;
   font-size: 1rem;
}
input:focus, textarea:focus {
   outline: none;
   border-color: #e63946;
   box-shadow: 0 0 5px rgba(230,57,70,0.5);
}
button {
   background: linear-gradient(135deg, #e63946, #b30000);
   color: white;
   font-weight: bold;
   border: none;
   cursor: pointer;
   transition: background 0.3s ease;
}
button:hover {
   background: linear-gradient(135deg, #ff4d4d, #800000);
}

/* FOOTER */
footer {
   background-color: #b30000;
   color: white;
   text-align: center;
   padding: 15px;
   font-size: 0.9rem;
   box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

/* GALERIJA */
.galerija {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
}
.galerija img {
   width: 280px;
   border-radius: 15px;
   object-fit: cover;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.galerija img:hover {
   transform: scale(1.05);
   box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
   nav ul {
       flex-direction: column;
       gap: 10px;
       border-radius: 20px;
   }
   .galerija img {
       width: 100%;
   }
}
