/* ===== GLOBAL RESETS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Dark background, tan text */
body {
  font-family: Arial, sans-serif;
  color: #e0c9a6;          /* tan */
  background-color: #0b0b0b; /* near-black */
  line-height: 1.6;
}

/* Keep class for future if needed, but no logo watermark */
body.bg-hero {
  background-color: #0b0b0b;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111111;
  border-bottom: 2px solid #333333;
}

.logo-main {
  width: 160px;
  height: auto;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #e0c9a6;
  font-weight: bold;
}

.nav a:hover,
.nav a.active {
  color: #f5e1b5;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f5e1b5;
}

.mission {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.2rem;
}

/* ===== BUTTONS ===== */
.cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn.primary {
  background: #e0c9a6;
  color: #111111;
}

.btn.outline {
  border: 2px solid #e0c9a6;
  color: #e0c9a6;
}

.btn.ghost {
  background: #222222;
  color: #e0c9a6;
}

/* ===== SECTIONS ===== */
.services,
.why-us,
.contact {
  padding: 50px 20px;
  text-align: center;
}

.services h2,
.why-us h2,
.contact h2,
.gallery-hero h1 {
  color: #f5e1b5;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #151515;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333333;
}

/* ===== WHY US ===== */
.why-list {
  list-style: none;
  margin-top: 20px;
}

.why-list li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* ===== CONTACT ===== */
.contact a {
  color: #e0c9a6;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #000000;
  color: #e0c9a6;
  margin-top: 40px;
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  text-align: center;
  padding: 40px 20px;
}

.gallery-hero p {
  color: #e0c9a6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid #333333;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  border: 3px solid #e0c9a6;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #e0c9a6;
  cursor: pointer;
}
