﻿
          <style>
    /* Stilizacija modala */
    .modal-content {
      background-color: #4DA6FF; /* Plava pozadina */
      color: white;
      border-radius: 12px;
    }

    .modal-header {
      border-bottom: 2px solid #f1c40f; /* Zlatna linija na vrhu */
      background-color: #4DA6FF; /* Crna pozadina za header */
      color: #f1c40f; /* Zlatni tekst */
    }

    .modal-header h5 {
      font-weight: bold;
    }

    .modal-body {
      background-color: #f1f1f1;
      color: #0066FF;
    }

    .modal-footer {
      border-top: 2px solid #f1c40f; /* Zlatna linija na dnu */
      background-color: #f1c40f; /* Crna pozadina za footer */
    }

    .modal-body img {
      width: 100%;
      border-radius: 8px;
    }

    .modal-body h6 {
      color: #0066FF;
    }
   .image-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* poluprovidna pozadina */
    color: #fff;
    padding: 4px 8px;
	   margin: 10px;
    font-size: 12px;
    border-radius: 4px;
}
  </style>
  <style>
    body {
      background-color: #fdfdfd;
      font-family: 'Segoe UI', sans-serif;
    }
    .navbar {
      background-color: #4da6ff;
    }
    .navbar-brand, .nav-link, .btn-outline-light {
      color: white !important;
    }
       /* Stil za nav-item */
  .navbar-nav .nav-item {
    position: relative;
  }

  /* Stil za nav-link pri hoveru */
  .navbar-nav .nav-item .nav-link {
    transition: background-color 0.3s ease, color 0.3s ease; /* Prelaz između boje pozadine i boje teksta */
  }

  .navbar-nav .nav-item:hover .nav-link {
    background-color: #4CAF50; /* Zelena pozadina pri hoveru */
    color: white; /* Bijeli tekst */
    border-radius: 8px; /* Zaobljeni kutovi */
      padding-left: 3px;
   }

   
    .hero {
      background: linear-gradient(rgba(77,166,255,0.3), rgba(255,255,255,0.9)),
                  url('https://source.unsplash.com/1600x700/?sunset,sky,clouds,peace') no-repeat center center;
      background-size: cover;
      height: 230px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-bottom: 4px solid #66cc99;
    }
    .hero h2 {
      font-size: 2.0rem;
      color: #2c3e50;
      font-weight: bold;
    }
    .hero p {
      color: #333;
      font-size: 1.3rem;
    }
    .section-title {
      color: #2c3e50;
      margin-bottom: 1.5rem;
      border-left: 6px solid #ff9966;
      padding-left: 10px;
      font-weight: bold;
    }
    .card {
      border: none;
      border-radius: 16px;
      transition: transform 0.3s;
    }
    .card:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .card-body {
      background-color: #ffffff;
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px; 
        
    }
footer {
  background: linear-gradient(to bottom, #ffffff, #F0EAB0,  #ECD989 ); 
  font-size: 0.9rem;
}
      .btn-theme {
      background-color: #ff9966;
      color: white;
    }
  .gallery-img {
    width: 100%;
    height: 200px; 
    object-fit: cover;  
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);  
  }   
      
      .section {
      padding-top: 1.5rem;
      
    }
      
      
.card-img-top {
  width: 100%;
  height: 200px;  
  object-fit: cover;  
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  filter: grayscale(60%); 
}

.card-img-top:hover {
  transform: scale(1.05); 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
  filter: grayscale(0%); 
}
    </style>
    <style>
  .memorijal-lista {
    list-style: none;
    padding: 0;
    margin: 0;
     background: #f9f9f9;
  }

  .memorijal-lista li {
    margin-bottom: 1rem;
    color: #333;
     position: relative;
    text-align: left;
    transition: all 0.4s ease-in-out;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
      padding-left: 5px;
  }

  .memorijal-lista li:hover {
    color: #fff;
    background-color: #4CAF50;  
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);    
    padding: 0.9rem;

  }

  .memorijal-lista li:last-child {
    font-weight: bold;
    color: #a00;
     border-radius: 12px;
  }
</style>
    <style>
  /* Stilizacija dropdown menija */
  .nav-item.dropdown {
    position: relative;
 
  }

  /* Meni koji se prikazuje */
  .dropdown-menu {
    background-color: #4DA6FF;  /* Svijetla pozadina */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
  }

  /* Kada je meni prikazan */
  .nav-item.dropdown:hover .dropdown-menu {
     opacity: 1;
    visibility: visible;
  }

  /* Stilizacija stavki u dropdownu */
  .dropdown-item {
    padding: 0.65rem 1.0rem;
    color: #FFFFFF;
    font-size: 1rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
  }

  /* Efekat hovera na stavke */
  .dropdown-item:hover {
    background-color: #4CAF50;  /* Zeleni hover efekt */
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transform: translateX(5px); /* Pomaknuće u desno */
  }

  /* Stil za dropdown-toggle */
  .dropdown-toggle {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  /* Efekat hovera na dugme za otvaranje dropdown-a */
  .dropdown-toggle:hover {
    color: #4CAF50;
  }

  /* Dodajemo lagane sjenke za cijeli dropdown meni */
  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Jača sjenka pri hoveru */
  }
        
</style>
      
      <style>
      body {
        background: linear-gradient(to right, #fef9e7, #e3f2fd);
        font-family: 'Segoe UI', sans-serif;
      }

      .card-profile {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        overflow: hidden;
        margin: 60px auto;
        max-width: 1000px;
        border-left: 10px solid #ffc107;
      }

      .profile-header {
        background-color: #4DA6FF;
        color: white;
        padding: 30px;
        text-align: center;
      }

      .profile-header h2 {
        margin-bottom: 5px;
      }

.photo-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap; /* omogućava prelazak u novi red */
}

.photo-grid > div {
  width: 380px;
  height: 380px;
  position: relative;
}

.photo-grid img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 15px;
  border: 5px solid white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Za male ekrane (mobiteli): slike idu jedna ispod druge */
@media (max-width: 768px) {
  .photo-grid {
    flex-direction: column;
    align-items: center;
  }
}
      .profile-body {
        padding: 30px;
      }

      .bio-box {
        background-color: #fff8dc;
        padding: 20px;
        border-left: 5px solid #ffc107;
        border-radius: 10px;
        font-style: italic;
      }

      .label {
        font-weight: bold;
        color:#1F1E1E;
      }

      .dates {
        margin-top: 20px;
        font-size: 1.1rem;
      }

      .dates span {
        background-color: #0d6efd;
        color: white;
        padding: 5px 12px;
        border-radius: 50px;
        margin-right: 10px;
        font-size: 0.95rem;
      }
    </style>
      <style>
.pure-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pure-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.pure-modal:target {
  display: flex;
}

.pure-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  text-decoration: none;
  z-index: 10000;
}
</style>
