﻿
    body {
      background-color: #fdfdfd;
      font-family: 'Segoe UI', sans-serif;
    }
    .modal-content {
      background-color: #4DA6FF; 
      color: white;
      border-radius: 12px;
    }

    .modal-header {
      border-bottom: 2px solid #f1c40f; 
      background-color: #4DA6FF; 
      color: #f1c40f; 
    }

    .modal-header h5 {
      font-weight: bold;
    }

    .modal-body {
      background-color: #f1f1f1;
      color: #0066FF;
    }

    .modal-footer {
      border-top: 2px solid #f1c40f; 
      background-color: #f1c40f; 
    }

    .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); 
    color: #fff;
    padding: 4px 8px;
    margin: 10px;
    font-size: 12px;
    border-radius: 4px;
        }

    .navbar {
      background-color: #4da6ff;
    }
    .navbar-brand, .nav-link, .btn-outline-light {
      color: white !important;
    }
  .navbar-nav .nav-item {
    position: relative;
  }
  .navbar-nav .nav-item .nav-link {
    transition: background-color 0.3s ease, color 0.3s ease; 
  }
  .navbar-nav .nav-item:hover .nav-link {
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
      padding-left: 3px;
   }
        .hero {
      background: linear-gradient(rgba(77,166,255,0.3), rgba(255,255,255,0.9));
      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%); 
}
  .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 a {
    color: #333;
    text-decoration: none;
  }
  .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;
  }
  .nav-item.dropdown {
    position: relative;
  }
  .dropdown-menu {
    background-color: #4DA6FF;
    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;
  }
  .nav-item.dropdown:hover .dropdown-menu {
     opacity: 1;
    visibility: visible;
  }
  .dropdown-item {
    padding: 0.65rem 1.0rem;
    color: #FFFFFF;
    font-size: 1rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
  }
  .dropdown-item:hover {
    background-color: #4CAF50;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
  }
  .dropdown-toggle {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  .dropdown-toggle:hover {
    color: #4CAF50;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }    
