/* ==========================================================================
   PERCU KIESSÉ - AMBIANCE AFRIKA WARM DARK THEME (2026)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #e05627;
  --primary-hover: #c44317;
  --primary-light: rgba(224, 86, 39, 0.18);
  --secondary: #e9c46a;
  --accent: #2a9d8f;
  --dark: #120c0a;
  --text: #f5ede6;
  --text-muted: #c9b8ab;
  --bg-body: #1c1512;
  --bg-card: #271e19;
  --border: #3d2f28;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
}

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

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

img, video, iframe, picture {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #f4a261 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(224, 86, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 86, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* HEADER */
.site-header {
  background: rgba(18, 12, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--primary);
}

.brand span.accent {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-weight: 600;
  color: #e6dad0;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  background: #140e0c;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  padding: 12px;
  font-weight: 600;
  color: #f5ede6;
}

.mobile-drawer a.active {
  color: var(--secondary);
}

/* HERO */
.hero {
  padding: 70px 0;
  background: radial-gradient(circle at 80% 20%, rgba(224, 86, 39, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(233, 196, 106, 0.12) 0%, transparent 60%),
              #16100d;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 2.9rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* SECTIONS & CARDS */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.card-img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #ffffff;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.card-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* GALERIE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: #140e0c;
}

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MODALE LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 6, 5, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-box {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-box img, .lightbox-box video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: #fff;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--text);
  padding: 60px 0 30px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer h4 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--text);
}

.footer a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #a39286;
}

/* RESPONSIVE */
@media (max-width: 868px) {
  .container {
    width: 94%;
    padding: 0 8px;
  }

  .hero-grid, .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .card {
    padding: 16px;
    width: 100%;
  }

  .card-img {
    height: 180px;
  }

  .nav-menu {
    display: none;
  }

  .burger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }
}
