/* Hero Section */
.hero-section {
    background: url('../images/gallery-hero.jpg') center/cover fixed no-repeat;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section h1, .hero-section p {
    position: relative;
    z-index: 1;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .description {
    opacity: 1;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 80vh;
}

.fullscreen-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

/* Pagination Buttons */
.btn-violet, .btn-orange {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.btn-violet:hover, .btn-orange:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }

    .fullscreen-modal img {
        max-width: 100%;
    }
}




.footer {
    background: #000;
    color: white;
  }
  
  .footer h5 {
    color: #ff7f00;
    font-size: 1.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7f00;
  }
  
  .footer .border-white {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  