/* Global reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }
  
    :root {
        --primary: #222222;    /* crna kao glavna boja */
        --secondary: #4F4F4F;  /* tamna siva */
        --background: #F5F5F5; /* svijetlo siva / beige */
        --text: #1b2123;      /* gotovo crna */
        --accent: #BDBDBD;     /* neutralno siva kao suptilni naglasak */
        --neutral: #FFFFFF;    /* bijela */
      }
      
  
  
  html, body {
    background: var(--background);
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text);
  }
  
  /* Header */
  .top-bar {
    background: var(--text);
    color: var(--neutral);
  }

  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;

  }

  .login a {
    text-decoration: none;
    color: var(--neutral);
    border-bottom: #F5F5F5 5px solid;
    border-radius: 5px;
    padding: 5px;
  }

  
  .login a:hover {
 color: rgb(160, 160, 160);
  }
  
  
  .logo,
  .title,
  .login {
    flex: 1;
    text-align: center;

    color: var(--neutral);
  }
  
  .logo img {
    width: 75px;
    height: 75px;
    border-radius: 5px;
  }


  footer a{
    text-decoration: none;
    color: var(--neutral);
  }

  
  footer a:hover{
    text-decoration: none;
    color: rgb(160, 160, 160);
  }
  /* Menu */
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--secondary);
    padding: 10px;
    gap: 10px;
    border-radius: 5px;
  }
  
  .menu div, select {
    width: 110px;
    height: 25px;
    background: var(--primary);
    color:var(--neutral);
    margin: 5px;
    transition: background 0.3s;
    border-radius: 5px;
  }

  .menu div a {
  color: var(--neutral);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 25px;
}
  
  .menu div:hover {
    background: var(--accent);
  }
  
  /* Main */
  .main {
    padding: 20px;
    flex: 1;
  }
  
  .slika {
   
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
 
  }
  
  .tekst-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tekst {
    background: var(--neutral);
    flex: 1 1 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    color: var(--text);
  }
  
  /* Footer */
  .footer {
    background: var(--text);
    height: 60px;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .gallery-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  border-radius: 10px;
  background: var(--neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0,0,0,0.5);
  color: white;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.3s;
}

.arrow:hover {
  background-color: rgba(0,0,0,0.8);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}


/* prijava */


.login-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 30px;
  background: var(--neutral);
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.login-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-box label {
  color: var(--text);
  font-weight: bold;
}

.login-box input {
  padding: 10px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 1rem;
}

.login-box button {
  padding: 10px;
  background-color: var(--primary);
  color: var(--neutral);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-box button:hover {
  background-color: var(--secondary);
}

/* menu */


.menu-section {
  background: var(--neutral);
  padding: 30px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.menu-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item {
  background: var(--background);
  padding: 15px;
  border-left: 5px solid var(--primary);
  border-radius: 5px;
}

.menu-item h3 {
  margin-bottom: 5px;
  color: var(--text);
}

.menu-item p {
  margin-bottom: 10px;
  color: var(--secondary);
}

.cijena {
  font-weight: bold;
  color: var(--text);
}


/* narudjzba  */

.order-section {
  background: var(--neutral);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.order-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-form label {
  font-weight: bold;
  color: var(--text);
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 10px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 1rem;
  background: var(--background);
  color: var(--text);  
}

.order-form button {
  padding: 10px;
  background-color: var(--primary);
  color: var(--neutral);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-form button:hover {
  background-color: var(--secondary);
}

.order-form select {
  color: var(--text) !important;
}


/* lokacija */ 

.location-section {
  background: var(--neutral);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text);
}

.map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.location-map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  display: block;
}

.contact-info h3 {
  color: var(--text);
  margin-top: 20px;
}

.contact-info p {
  color: var(--secondary);
}


/* radno vrime */

.hours-section {
  background: var(--neutral);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.hours-section h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 10px;
}

.hours-section p {
  color: var(--secondary);
  margin-bottom: 20px;
}

.working-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.working-hours-table th,
.working-hours-table td {
  padding: 12px;
  border: 1px solid var(--accent);
  text-align: center;
  color: var(--text);
}

.working-hours-table thead {
  background-color: var(--primary);
  color: var(--neutral);
}


/*  rezenzija */

.reviews-section {
  background: var(--neutral);
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.reviews-section h2 {
  text-align: center;
  color: var(--text);
  margin-bottom: 20px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.review {
  background: var(--background);
  border-left: 4px solid var(--primary);
  padding: 15px;
  border-radius: 5px;
}

.review h4 {
  margin-bottom: 5px;
  color: var(--text);
}

.review p {
  color: var(--secondary);
}

.review-form h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.review-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-form input,
.review-form textarea {
  padding: 10px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 1rem;
  background: var(--background);
  color: var(--text);
}

.review-form button {
  padding: 10px;
  background-color: var(--primary);
  color: var(--neutral);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-form button:hover {
  background-color: var(--secondary);
}

/* Kuhinja i radnici */

.team-section {
  background: var(--neutral);
  padding: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-section p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  color: var(--secondary);
}

.staff-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.staff-card {
  background: var(--background);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  width: 250px;
  padding: 15px;
  text-align: center;
  color: var(--text);
  transition: box-shadow 0.3s ease;
}

.staff-card:hover {
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.staff-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.staff-card h3 {
  margin-bottom: 8px;
  font-weight: 700;
}

.staff-card p {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.3;
}


/* Kontakt stranica */

.contact-section {
  background: var(--neutral);
  max-width: 900px;
  margin: 30px auto 50px;
  padding: 30px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  color: var(--text);
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-section p {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 1rem;
  background: var(--background);
  color: var(--text);
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background-color: var(--primary);
  color: var(--neutral);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--secondary);
}

.contact-info {
  flex: 1 1 300px;
  background: var(--background);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  color: var(--text);
}

.contact-info h3 {
  margin-bottom: 15px;
  text-align: center;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1rem;
}

/* index slika */


