/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  background-color: #fff;
  padding: 0 24px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #eee;
  position: fixed;
  z-index: 1000;
  top: 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.logo img{
  width: 180px;
  height: 120px;

}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #333;
  padding-left: 35px;
  font-weight: 500;
}

nav a.active{
  color: #ed8e00; /* or any brand color */
font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.3s ease;
}

.mobile-menu a {
  padding: 12px 24px;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  nav a{
    text-decoration: none;
  }
  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}


body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f5f5;
}

.gallery-container {
  column-count: 4;
  column-gap: 16px;
  padding: 70px 80px 70px 80px;
  max-width: 1600px;
  margin: 120px auto 0 auto;
}


.image-card:hover {
  transform: translateY(-4px);
}


.image-card {
position: relative;
/* border-radius: 12px; */
overflow: hidden;
margin-bottom: 16px;
display: inline-block;
width: 100%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.image-card img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.image-caption {
position: absolute;
bottom: 0;
width: 100%;
padding: 10px 20px;
backdrop-filter: blur(8px);
background: rgba(255, 255, 255, 0.3);
text-align: center;
font-weight: 600;
color: #000000;
font-size: 14px;
letter-spacing: 1px;
}


.image-caption p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #000;
  font-weight: normal;
}

/* Responsive column counts */
@media (max-width: 1200px) {
  .gallery-container {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .gallery-container {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .gallery-container {
    column-count: 1;
    padding: 20px 30px 20px 30px;
  }
}



.footer {
  background-color: #ff9800;
  color: #333;
  padding: 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links,
.footer-contact,
.footer-address {
  margin: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.social-icon {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #e4d3d3; /* Light Blue for hover */
}
/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 10px;
  color: #333;
}

