/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #666;
  background: #fff;
  overflow-x: hidden;
}
a { color: #1f1f1f; text-decoration: none; transition: all 0.3s ease; }
ul, li { list-style: none; }
/* LAYOUT */
.container       { width: 90%; max-width: 1200px; margin: auto; }
.container-fluid { width: 100%; padding: 0 15px; }
.layout-padding  { padding: 60px 0; }
/* HEADER */
.header {
  width: 100%;
  background-color: #252525;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #e8e3e1;
  letter-spacing: 1px;
}
.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
}
.nav-toggler span { display: block; width: 22px; height: 2px; background: #555; border-radius: 2px; }
.nav-links ul { display: flex; gap: 5px; }
.nav-links ul li a {
  padding: 8px 14px;
  font-size: 14px;
  color: #c1bebe;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links ul li a:hover,
.nav-links ul li.active a { color: #f76d37; }

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Text Section */
.section-title {
    font-size: 2.5rem;
    color: #f76d37;
    margin: 5.625rem 0 1.25rem;
    text-align: center;
}

.section-text {
    font-size: 1.15rem;
    color: #636161;
    text-align: center;
    margin-bottom: 3.125rem;
    margin-inline: auto;
    font-weight: 398;
}

/* Images Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

/* Images */
.gallery-item img {
    width: 100%;
    height: 20.6rem; /* Equal height fix */
    object-fit: cover;
    border-radius: 0.3125rem;
    display: block;
}

/* Overlay Styling (Hidden by default) */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: white;
}

/* Button */
.btn {
    font-size: 1.5rem;
    background-color: #252525;
    color: #fff;
    padding: 0.9375rem 1.875rem;
    margin: 2.5rem auto 5.625rem;
    border-radius: 0.25rem;
    border: none;
    display: block;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #f76d37;
}

/* FOOTER */
.footer { background: #252525; padding: 60px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-text { font-size: 14px; color: #999; line-height: 24px; }
.footer-menu li { padding: 4px 0; }
.footer-menu li a { color: #999; font-size: 14px; transition: color 0.3s; }
.footer-menu li a:hover { color: #f76d37; }
.footer-contact li { padding: 5px 0; }
.footer-contact li a { color: #999; font-size: 14px; transition: color 0.3s; }
.footer-contact li a:hover { color: #f76d37; }
/* COPYRIGHT */
.copyright { background: #fff; padding: 18px 0; border-top: 1px solid #eee; }
.copyright-text { font-size: 15px; color: #252525; text-align: center; }
.copyright-text a { color: #252525; }
.copyright-text a:hover { color: #f76d37; }
/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-toggler { display: flex; }
  .nav-links { width: 100%; display: none; }
  .nav-links.open { display: block; }
  .nav-links ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .nav-links ul li a { display: block; padding: 10px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .section-text { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}