/* =========================
   OPĆE POSTAVKE
========================= */
body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
    margin: 10;
}

/* =========================
   HEADER
========================= */
header {
    background:  
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
        url("img/header.png")  center 30%/cover no-repeat ;
    text-align: center;
    padding: 200px 20px;
    position: relative;
}

.naslov {
    font-family: 'Bangers';
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: white;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(255, 0, 0, 0.4);
}

.head {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f0d98a;
    letter-spacing: 2px;
    margin-top: 10px;
}


header .naslov {
    color: #fff;
    text-shadow:
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(255, 0, 0, 0.4);
}
/* =========================
   NAVBAR
========================= */
.navbar {
    background-color: #000;
   height: 60px;
    justify-content: center;
}

.nav-item {
    color: #d33737;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-item:hover {
    background-color: rgb(255, 0, 0);
    color: black;
    border-radius: 5px;
}

/* =========================
   TEKST BLOK
========================= */
.tekst {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    line-height: 1.8;
    box-shadow: 0 0 15px #8B0000;
    color: #f5f5f5;
}

/* =========================
   NASLOVI
========================= */
.title {
    text-align: center;
    margin: 40px 0 20px 0;
    color: #f5f5f5;
}

.razmak{
    height: 40px;
}


/* =========================
   TABLICA
========================= */
table {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    font-size: 14px;
  }

  th {
    background-color: #502c2c;
    color: white;
    padding: 10px;
    text-align: center;
  }

  td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #000000;
  }

 

  tr:hover {
    background-color: #f07f7f96;
  }

  table {
    box-shadow: 0 2px 8px #8B0000;
  }

/* =========================
   SLIKE
========================= */
.gallery-img {
  width: 100%;
  height: 500px;
  width: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 15px #8B0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}  je mos nap kad mi neko dode misom na sliku da mi poveca sliku kao vise na full screan

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #8B0000;
}

.galery-img {
  width: 100%;
  height: max-content;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 15px #8B0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* =========================
   FOOTER
========================= */
footer {
    color: #d33737;
    padding: 10px 20px;
    text-align: center;
    border-top: 2px solid #d33737;
    margin-top: 50px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    header {
        padding: 120px 20px;
    }

    .naslov {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .head {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    header {
        padding: 100px 15px;
    }

    .naslov {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .head {
        font-size: 1rem;
    }

    .tekst {
        font-size: 1rem;
        padding: 15px;
    }
}


/* =========================
   KONTAKT
========================= */
form {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 0, 0.4);
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background: #111;
    color: #fff;
    box-shadow:
        0 0 5px rgba(255, 0, 0, 0.6);
}

form input:focus,
form textarea:focus {
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.6);
}

form button {
    background: #ff1a1a;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.5);
    transition: 0.3s;
}

form button:hover {
    background: #ff3333;
    box-shadow:
        0 0 20px rgba(255, 0, 0, 1),
        0 0 40px rgba(255, 13, 0, 0.7);
}