/* ================================================================
   BARAKARSA — Design System
   Fonts: Source Serif 4 · Inter · JetBrains Mono
   Gold:  #D2AF6D
   No emoji in UI elements — clean, editorial style
   ================================================================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --gold: #D2AF6D;
  --gold-hover: #B8954A;
  --gold-soft: #F0E4CC;
  --gold-light: #FAF5EB;
  --bg: #FAF8F4;
  --card: #FFFFFF;
  --text: #1F1F1F;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: #E3DDD1;
  --border-light: #F0ECE4;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 30px rgba(0,0,0,0.1);
  --font-serif: 'Source Serif 4', serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-height: 70px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ---------- TYPOGRAPHY ---------- */
.heading-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
}

.heading-sans {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.3;
}

.text-muted {
  color: var(--text-muted);
}

.text-mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.navbar-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  gap: 4px;
}

.navbar-links a {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .2s ease;                           
}

.navbar-links a:hover {
  background: var(--gold-soft);
  color: var(--gold-hover);
}

.navbar-links a.active {
  background: var(--gold);
  color: #fff;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  margin-top: var(--nav-height);
  padding: 64px 24px 48px;
  background: linear-gradient(135deg, #FAF8F4 0%, #F0E4CC 100%);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- SECTION ---------- */
.section {
  padding: 70px 24px;
}

.section-alt {
  background: var(--card);
}

.section-dark {
  background: var(--text);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 175, 109, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--card);
  border-color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-center {
  text-align: center;
  margin-top: 28px;
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-image-placeholder {
  height: 200px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.card-body {
  padding: 20px;
}

.card-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 3px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.4;
}

.card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.card-link {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.card-link:hover {
  color: var(--gold-hover);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.card-tag {
  font-size: 0.68rem;
  padding: 2px 10px;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--gold-hover);
  font-family: var(--font-sans);
}

/* ---------- LINK CARD (horizontal) ---------- */
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s ease;
}

.link-card:hover {
  background: var(--gold-light);
  border-color: var(--gold);
}

.link-card-icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.link-card-body {
  flex: 1;
}

.link-card-body h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.link-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.link-card-arrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- HERO (homepage) ---------- */
.hero {
  margin-top: var(--nav-height);
  padding: 80px 24px 60px;
  background: linear-gradient(135deg, #FAF8F4 0%, #F0E4CC 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}

.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:rgba(20,16,10,0.32);
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative; z-index:2;
}

.hero-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  position: relative; z-index:2;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ---------- STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
}

/* ---------- GALERI GRID ---------- */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.galeri-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s ease;
}

.galeri-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* ---------- YOUTUBE EMBED ---------- */
.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.yt-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- FILTER TABS ---------- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: all .2s ease;
  color: var(--text-muted);
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--text);
}

.filter-tab.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  opacity: 0.7;
  transition: opacity .2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  max-width: 80%;
  font-family: var(--font-sans);
}

/* ---------- MAP ---------- */
.map-wrapper {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper .leaflet-container {
  height: 100%;
  width: 100%;
  font-family: var(--font-sans);
}

.map-popup-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.map-popup-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- SOROTAN (spotlight) ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spotlight-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 32px;
}

.spotlight-card .eyebrow {
  margin-bottom: 12px;
}

.spotlight-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.spotlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 24px 24px;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 2;
  transition: color .2s;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  color: var(--gold);
  font-size: 1.1rem;
  transition: opacity .2s;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-copy {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- SPLIT LAYOUT ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ---------- LOADING ---------- */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.loading-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- ADMIN SPECIFIC ---------- */
.admin-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.admin-header h1 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.admin-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.db-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  background: #E8F8F0;
  border: 1px solid #27AE60;
}

.db-status.error {
  background: #FDEDEC;
  border-color: #E74C3C;
}

.db-status .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27AE60;
  margin-right: 6px;
}

.db-status.error .status-dot {
  background: #E74C3C;
}

.db-status .badge {
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: #27AE60;
  color: #fff;
}

.db-status.error .badge {
  background: #E74C3C;
}

.admin-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-tab {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.admin-tab.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.admin-panel {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.admin-panel.active {
  display: block;
}

.form-section {
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.form-field .hint {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 70px;
  resize: vertical;
}

.form-field input[type="file"] {
  padding: 8px;
  background: var(--card);
  border: 1px dashed var(--border);
  cursor: pointer;
}

.form-field input[type="file"]:hover {
  border-color: var(--gold);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.divisi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.divisi-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: var(--bg);
}

.divisi-item label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.divisi-item textarea {
  min-height: 50px;
  font-size: 0.82rem;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  background: var(--card);
  resize: vertical;
}

.file-preview {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.file-preview.show {
  display: flex;
}

.file-preview img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.file-preview .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-preview .file-size {
  font-size: 0.7rem;
  color: var(--text-light);
}

.file-preview .file-status {
  color: #27AE60;
  font-weight: 600;
  font-size: 0.78rem;
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading .btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}

.response-box {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.6;
  display: none;
}

.response-box.show {
  display: block;
}

.response-box.success {
  background: #E8F8F0;
  border: 1px solid #27AE60;
  color: var(--text);
}

.response-box.error {
  background: #FDEDEC;
  border: 1px solid #E74C3C;
  color: var(--text);
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #1F1F1F;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  font-family: var(--font-sans);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  background: #E74C3C;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }

  .navbar-links.show {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px 40px;
  }

  .hero-logo img {
    height: 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2,
  .form-grid-3,
  .divisi-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 18px;
  }

  .page-header {
    padding: 48px 20px 36px;
  }

  .section {
    padding: 50px 20px;
  }

  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .galeri-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .galeri-grid img {
    height: 150px;
  }
}
