/* --- Header --- */

/* Navbar - Keep your original background and styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(60, 60, 10, 0.6); /* your olive background */
  padding: 0 50px; /* horizontal padding only */
  font-family: Poppins, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* fixed height to prevent expanding */
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Logo Image */
.logo-image {
  max-height: 120px; /* control logo image height */
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 50px; /* Push menu slightly left */
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px; /* Reduce from 18px to 16px (or 15px if needed) */
  padding: 8px 10px; /* Slightly reduce padding for tighter spacing */
}


/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  min-width: 220px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* --- Banner Section --- */
.portfolio-banner {
   background-image: url('images/gallery-banner.jpg');
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* --- Projects Gallery --- */
.projects-gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.project-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.project-row.single-project {
  justify-content: center;
}

.project-item {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.project-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-item:hover img {
  transform: scale(1.05);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-info {
  opacity: 1;
}

.project-info h3 {
  margin: 0;
  font-size: 20px;
}

.project-info p {
  margin: 5px 0 0;
  font-size: 16px;
}


.site-footer {
  background-color: #3c3b26; /* Olive tone */
  color: white;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
}

.footer-logo p {
  font-size: 15px;
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 12px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #c7a962;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 20px;
}
/* Gallery Banner */
.gallery-banner {
  position: relative;
  height: 50vh;
  background: url('images/gallery-banner.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-banner h1 {
  font-size: 3rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  text-align: center;
}
