/* Container styling */
#gallerydiv {
    min-height: 800px;
    background-color: #f0f0f0;
    padding: 20px;
}

/* Gallery flexbox layout */
#gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
a {
    color: #333; /* Default link color */
    font-family: 'Times New Roman', Times, serif; /* Font style */
    text-decoration: none; /* Remove underline */
    padding: 10px 20px; /* Add some padding around the link */
  }
  
  /* Hover effect for anchor links */
  a:hover {
    transform: scale(1.2);
    color: #ff1809 !important;
  }
  .animated-text {
    font-size: 20px;
    color: #e41818;
    animation: fadeIn 2s ease-in-out;
  }
  .navbar-brand:hover {
  background-color: transparent;
  transform: none;
  color: inherit;
}
  /* Animated container styling */
  .animated-container {
    background: linear-gradient(to right, #edd45690, #c97a707b); /* Gradient background */
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  
  /* Animation for the container */
  .animated-container.visible {
    opacity: 1;
    animation: fadeIn 1s ease-in-out forwards, slideInFromLeft 1s ease-in-out forwards, scaleUp 0.5s ease-in-out forwards;
  }
    
/* Image styling */
.image {
    padding: 20px;
    opacity: 0;
    transform: translateY(20px) scale(0.9) rotate(0deg);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.image.in-view {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}

/* Image hover effect */
#gh:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

/* Heading styles */
#gallerydiv h1 {
    text-align: center;
    font-style: italic;
    font-size: 2.5em;
    color: #f43708; /* Example color */
}

#gallerydiv h3 {
    text-align: center;
    font-style: italic;
    font-size: 2em;
    color: #f5700a; /* Example color */
    margin-top: 10px;
}

/* Animation for headings */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
}

#gallerydiv h1, h3 {
    animation: fadeIn 1s ease-in-out;
}

/* General styles */
.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
}

.shadow:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.bg-body {
    background-color: #fff;
}

.rounded {
    border-radius: 10px;
}

.p-3 {
    padding: 1rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.gal {
    background-color: rgb(234, 225, 225);
}
footer {
    background-color: #333; /* Dark background color */
    color: white; /* Text color */
    padding: 20px;
    position: relative;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 150px; /* Ensures minimum height for footer */
  }
  
  .footer-section.contact {
    text-align: center; /* Center align text for better appearance */
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section li {
    margin: 10px 0;
  }
  
  .footer-section i {
    margin-right: 10px;
  }
  
  .footer-section .contact-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Center items for better layout */
  }
  .copyright {
    text-align: center;
    padding-bottom: 10px;
    color: white; /* Text color */
    width: 100%;
  }  
