:root {
  --black: #070705;
  --black-soft: #1a1a1a;
/*  --gold: #d4af37; */
  --gold: #F8C007;
  --gold-bright: #f1d369;
  --white: #f5f5f5;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Reusable button reset */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* Reusable heading styles */
h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

section {
  scroll-margin-top: 68px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}

.logo span {
  color: var(--gold);
  font-weight: 700;
}

/* Logo image sizing */
.logo img {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 600;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--gold);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: var(--black-soft);
  border-right: 2px solid var(--gold);
  z-index: 200;
  transition: left 0.3s ease;
  padding: 1.5rem;
}

.sidebar.open {
  left: 0;
}

.sidebar-close {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
}

.overlay.active {
  display: block;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 1.5rem;
  background: radial-gradient(circle at center, var(--black-soft), var(--black));
  scroll-margin-top: 68px;
}

.hero h1 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
}

/* Services section */
.services-section {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('img/IMG_2849.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 1.5rem;
  text-align: center;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

.services-section h2 {
  position: relative;
  z-index: 1;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1150px;
  margin: 0 auto;
  align-items: start;
}

/* Photo Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 1.25rem auto 0;
}

.gallery-item {
  padding: 0;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 600;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gold);
  font-size: 2rem;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid rgba(248,192,7,0.06);
  padding: 1.25rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  white-space: normal;
  overflow-wrap: anywhere;
  display: block;
  margin-bottom: 0.4rem;
  text-align: left;
  padding-left: 1.25rem;
  position: relative;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-card li.no-bullet::before {
  content: "";
}

/* About section */
.about-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

/* Gallery section */
.gallery-section {
  background: var(--black-soft);
  padding: 3rem 1.5rem;
  text-align: center;
}

.gallery-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Contact section */
.contact-section {
  background: var(--black);
  padding: 3rem 1.5rem;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 250px;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 0.75rem;
  color: var(--white);
  font-family: inherit;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: var(--gold-bright);
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--black-soft);
  border-top: 2px solid var(--gold);
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  transition: background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.social-icons a:hover svg {
  fill: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    flex-direction: row-reverse;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-wrapper {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

