
/* Base */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background: #0a1a2f;
  display: flex;
}
a { color: inherit; }

/* Sidebar (desktop/tablet) */
.sidebar {
  height: 100vh;
  width: 240px;
  background-color: #0a1a2f;
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.sidebar img.logo {
  max-width: 150px;
  margin: 0 auto 20px auto;
  display: block;
}
.menu-links { flex-grow: 1; }
.sidebar a.nav {
  display: block;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: bold;
}
.sidebar a.nav:hover { background: #1c3b6b; }
.sidebar a.nav.active { background: #0073e6; }

/* Social icons bottom */
.social-icons {
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-icons a:hover svg { fill: #00c3ff; }

/* Content area */
.content {
  margin-left: 240px;
  padding: 40px;
  flex: 1;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}
.content > * { position: relative; z-index: 1; }
h1, h2 { color: #0073e6; }

/* Cards / boxes */
.box {
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  padding: 24px;
}

/* M U N K I hero */
.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
}
.munki {
  font-size: 6em;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #0073e6;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
  text-align: center;
}

/* About text */
.text-box {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6em;
}

/* Packages */
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.paket h3 { margin-top: 0; }
.price { font-weight: bold; color: #00c3ff; }

/* Contact form */
.contact-form {
  max-width: 540px;
  margin: 20px auto;
}
label { display:block; margin: 12px 0 6px; font-weight: 700; color:#fff; }
input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #f4f4f4;
  color: #222;
  font-size: 1em;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
input:focus, textarea:focus { outline: none; border: 2px solid #0073e6; background:#fff; }
button.btn {
  margin-top: 6px;
  width: 100%;
  padding: 14px;
  background: #0073e6;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.05em;
  cursor: pointer;
  transition: background .25s;
}
button.btn:hover { background:#005bb5; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.gallery img, .gallery video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  background: #111;
}
.gallery img { cursor:pointer; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
}
.lightbox .close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 36px;
  cursor: pointer;
}

/* Mobile header + hamburger */
.topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: #0a1a2f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.topbar .brand { font-weight: 800; letter-spacing: .12em; color:#0073e6; }
.hamburger {
  width: 40px; height: 40px; cursor: pointer;
  display: grid; place-items:center;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.1);
}
.hamburger span, .hamburger::before, .hamburger::after {
  content: "";
  display: block; width: 20px; height: 2px; background: #fff; margin: 3px 0;
}

/* Mobile styles */
@media (max-width: 768px) {
  body { display: block; }
  .topbar { display: flex; }
  .sidebar {
    transform: translateX(-260px);
    transition: transform .3s ease;
    width: 240px;
  }
  .sidebar.open { transform: translateX(0); }
  .content {
    margin-left: 0;
    padding: 80px 16px 24px;
    min-height: calc(100vh - 56px);
    background-attachment: scroll;
  }
  .munki { font-size: 3em; letter-spacing: 0.15em; }
}
