/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #0d0d0d;
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #f4d35e;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
}

.nav a.cta {
  color: #121212;
  background: #f4d35e;
  padding: 8px 14px;
  border-radius: 4px;
}

/* Hero */
.hero {
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: #f4d35e;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  background: #f4d35e;
  color: #121212;
  padding: 14px 28px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-dark {
  background: #1a1a1a;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f4d35e;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #2a2a2a;
}

/* Why Us */
.why-list {
  list-style: none;
  font-size: 1.1rem;
}

.why-list li {
  margin-bottom: 12px;
}

/* =========================
   GALLERY (HORIZONTAL SCROLL)
   ========================= */

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  margin-top: 24px;

  scroll-snap-type: x mandatory;
}

/* Hide scrollbar (still scrolls) */
.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

/* Image card */
.gallery-item {
  flex: 0 0 260px;   /* fixed width */
  height: 180px;     /* fixed height */
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  border: 1px solid #2a2a2a;

  scroll-snap-align: start;
}

/* Image itself */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact */
.contact-box {
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0d0d0d;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

/* Mobile */
@media (max-width: 768px) {
  .nav a {
    margin-left: 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

.lightbox.hidden {
  display: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}


/* Email */
.contact-email {
  margin-top: 16px;
  font-size: 1.05rem;
}

.contact-email a {
  color: #f4d35e;
  text-decoration: none;
  font-weight: 500;
}

.contact-email a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav a:not(.cta) {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
  }

  .nav a.cta {
    margin-left: 0;
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}
