/* Theme variables for dark and light */
:root {
  --bg: #010118;
  --panel: rgba(24, 21, 40, 0.03);
  --text: #fff;
  --muted: #9aa0a6;
  --accent: #a08d29;
  --glass: rgba(255, 255, 255, 0.25);
  --max-width: 1200px;
  --radius: 12px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f6f7;
    --panel: rgba(0, 0, 0, 0.03);
    --text: #111;
    --muted: #5a5f66;
    --glass: rgba(0, 0, 0, 0.25);
  }
}

/* Allow manual override via data-theme on html */
html[data-theme="light"] {
  --bg: #f6f6f7;
  --panel: rgba(0, 0, 0, 0.03);
  --text: #111;
  --muted: #5a5f66;
  --glass: rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] {
  --bg: #010118;
  --panel: rgba(24, 21, 40, 0.03);
  --text: #fff;
  --muted: #9aa0a6;
  --glass: rgba(255, 255, 255, 0.25);
}

/* Reset and base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px
}

/* Header */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent);
  backdrop-filter: blur(6px)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.brand {
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 1.05rem
}

.nav-links {
  display: flex;
  gap: 14px
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03)
}

/* Theme toggle */
.controls {
  display: flex;
  gap: 10px;
  align-items: center
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700
}

/* Hero */
.logo-hero {
  text-align: center;
  justify-content: center;
  align-content: center;
  margin-bottom: 20px;
  display: flex;
  width: 100%;

}

.logo-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
html[data-theme="dark"] .logo-hero img {
  filter: invert(100%);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 120px 20px 60px;
  overflow: hidden
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center
}

.hero-left {
  padding: 28px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 0 30px var(--accent);
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px
}

.subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 22px
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer
}

.btn-primary {
  background: var(--accent);
  color: #111
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text)
}

/* Thumbs */
.thumb-wrap {
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  max-width: 760px;
  box-shadow: 0 5px 15px var(--text);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.thumb {
  display: flex;
  width: 100%;
  border: none;
  align-items: center;
  background: none;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  padding:0;
}

.thumb:focus,
.thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 10px var(--text);
}

.thumb img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover
}

.thumb .label {
  color: #fff;
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem
}

/* Main */
main {
  padding: 60px 0 120px
}

.section {
  padding: 40px 0
}

.section h3 {
  font-size: 1.25rem;
  margin-bottom: 14px
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px
}

/* Contact */
.contact-card {
  background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, 0.01));
  border-radius: 14px;
  padding: 22px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 0 30px var(--accent);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem
}

input[type="text"],
input[type="email"],
textarea,select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg);
  color: var(--text);
  margin-bottom: 14px;
  font-size: 1rem
}

textarea {
  min-height: 120px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center
}

.note {
  color: var(--muted);
  font-size: 0.9rem
}

/* Footer */
footer {
  padding: 28px 0;
  color: var(--muted);
  text-align: center
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  z-index: 120;
  padding: 20px;
}

.lightbox.open {
  display: flex
}

.lightbox-inner {
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 16px;
  align-items: center
}

.lightbox-media {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh
}

.lightbox-media img,
.lightbox-media svg {
  max-width: 100%;
  max-height: 80vh;
  display: block
}

.lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text)
}

.lb-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer
}

.lb-nav {
  display: flex;
  gap: 8px
}

.lb-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer
}

.lightbox-inner {
  grid-template-columns: 1fr;
  gap: 12px
}

.lightbox-meta {
  flex-direction: row;
  justify-content: space-between;
  align-items: center
}

/* Responsive */
@media (max-width:880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr)
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media (max-width:520px) {
  .thumbs {
    grid-template-columns: repeat(2, 1fr)
  }

  .nav-links {
    display: none
  }

  .nav .brand {
    font-size: 0.95rem
  }
}

/* Focus */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(255, 107, 107, 0.18);
  outline-offset: 3px
}

/* Document links — matches site buttons and theme variables */
.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.doc-link {
  --pad-y: 8px;
  --pad-x: 12px;
  display: inline-block;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

html[data-theme="light"] .doc-link {
  border-color: rgba(0, 0, 0, 0.06);
}

.doc-link:hover,
.doc-link:focus {
  transform: translateY(-4px);
  background:  var(--accent);
  color: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  outline: none;
}
.header-gap{height:50px;}