/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Knoppen: geen globale transition, style-glass regelt hover (voorkomt trillen) */
.btn, .btn-primary, .btn-ghost, .btn-cta, button[type="submit"],
.hero-actions .btn, .hero-actions a[class*="btn"] {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

/* Header mag NOOIT transition op position/transform – anders “gaat weg” bij snel scrollen */
.site-header,
.site-header *,
header.site-header,
header.site-header * {
  transition: none !important;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0F3D2E, #134E5E, #0A2E22);
  color: #E8F5E9;
  min-height: 100vh;
}

/* Tigrinya (Ethiopic script): use Noto Sans Ethiopic so characters display correctly */
html[lang="ti"] body,
html[lang="ti"] .site-header,
html[lang="ti"] .glass,
html[lang="ti"] .feedback-card,
html[lang="ti"] .welcome-overlay {
  font-family: 'Noto Sans Ethiopic', 'Inter', sans-serif;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   NAVBAR
========================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

nav a {
  text-decoration: none;
  color: #E8F5E9;
  font-weight: 500;
}

nav a:hover {
  color: #A8FF78;
}

/* =========================
   GLASS SECTIONS
========================= */
.glass,
.card,
.service-box,
.about-box,
.contact-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 40px;
  margin-bottom: 40px;
}

/* =========================
   HEADINGS
========================= */
h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 15px;
}

/* =========================
   PARAGRAPHS
========================= */
p {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* =========================
   BUTTONS
========================= */
button,
.btn,
.btn-primary {
  background: linear-gradient(135deg, #00C853, #00E676);
  color: #0A2E22;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Hover wordt in style-glass.css gedaan – geen dubbele transform (trillen) */

/* =========================
   CARDS GRID (Services)
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 40px 0;
  text-align: center;
  opacity: 0.6;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 992px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 15px;
  }

  h1 {
    font-size: 30px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .glass,
  .card,
  .service-box,
  .about-box,
  .contact-box {
    padding: 25px;
  }
}
