@font-face {
    font-family: 'MyCustomFont';
    src: url('../fonts/tango-regular.otf') format('opentype');
}

body {
     margin: 0;
     padding: 0;
     background-color: #f8f9fa;
     font-family: 'Open Sans', sans-serif;
 }

 .navbar {
     background-color: #fff;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     padding: 1rem 0;
 }

 .navbar-brand {
     font-weight: bold;
     color: #333;
 }

 .gallery-container {
     min-height: calc(100vh - 80px);
     padding: 2rem 0;
 }

 .gallery-title {
     text-align: center;
     margin-bottom: 3rem;
     color: #333;
     font-size: 2.5rem;
     font-weight: 300;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
 }

 .gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 }

 .gallery-item img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     display: block;
 }

 .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
     color: white;
     padding: 1rem;
     transform: translateY(100%);
     transition: transform 0.3s ease;
 }

 .gallery-item:hover .gallery-overlay {
     transform: translateY(0);
 }

 .modal-content {
     background: transparent;
     border: none;
 }

 .modal-body {
     padding: 0;
 }

 .modal-img {
     max-width: 100%;
     max-height: 90vh;
     object-fit: contain;
 }

 .close-btn {
     position: absolute;
     top: 15px;
     right: 25px;
     color: white;
     font-size: 2rem;
     font-weight: bold;
     cursor: pointer;
     z-index: 1050;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 @media (max-width: 768px) {
     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1rem;
         padding: 0 0.5rem;
     }

     .gallery-title {
         font-size: 2rem;
         margin-bottom: 2rem;
     }
 }

 @media (max-width: 480px) {
     .gallery-grid {
         grid-template-columns: 1fr;
     }
 }


 .navbar-brand {
     font-family: 'MyCustomFont', sans-serif;
     position: relative;
     background-color: transparent;
     width: 410px;
     color: #3f4095 !important;
     /* display: inline-block; */
     padding: 4px 8px;
     border-radius: 4px;
     font-size: 20px;
     font-weight: bold;
 }