:root {
  --bg: #0f172a;
  --surface: #111827;
  --primary: #facc15;
  --primary-dark: #f59e0b;
  --muted: #cbd5e1;
  --text: #f8fafc;
  --text-muted: #94a3b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  background: linear-gradient(135deg, #020617 0%, #1f2937 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(250, 204, 21, 0.2);
  color: var(--primary);
}

.menu-toggle {
  border: 0;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  display: none;
  cursor: pointer;
}

.hero {
  background: url('https://images.unsplash.com/photo-1542965669-d8aeda11a9f9?auto=format&fit=crop&w=1800&q=75') center/cover no-repeat;
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin: 0 0 0.8rem;
}

.hero p {
  font-size: 1.12rem;
  max-width: 560px;
  color: #dbeafe;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  padding: 0.75rem 1.2rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #facc15, #f59e0b);
  color: #0f172a;
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.55);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(250, 204, 21, 0.2);
  color: var(--primary);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.page-section {
  margin: 2.2rem 0;
}

.page-section h1,
.page-section h2 {
  margin-bottom: 0.8rem;
}

.about-preview .about-box,
.instagram .grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-preview img,
.instagram img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.map-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  padding: 1.2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin: 0.45rem 0;
}

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--text-muted);
  padding: 1.5rem 0 0.7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid h3 {
  color: var(--text);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--primary);
}

.copy {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .hero-grid,
  .about-preview .about-box,
  .instagram .grid-2 {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 10px;
    flex-direction: column;
    padding: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav a {
    padding: 0.6rem 1rem;
    margin-bottom: 0.2rem;
    border-radius: 8px;
  }
}
