/* =========================================================
   EKKERINK FRAMEWORK v5
   LOCKED CORE STYLESHEET
   Responsive / SEO / Accessibility / Compliance Ready
========================================================= */


/* =========================================================
   RESET & BASE
========================================================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f17;
  color: #fff;
  line-height: 1.6;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-top: 0;
}

p {
  margin-top: 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: #121a2a;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   HEADER TOP
========================================================= */

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}


/* =========================================================
   LOGO SYSTEM
========================================================= */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
}

.logo-desktop {
  display: block;
  height: 42px;
}

.logo-mobile {
  display: none;
  height: 42px;
}


/* =========================================================
   PHONE BUTTON
========================================================= */

.header-phone a,
.phone a {
  background: #4ea1ff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav,
nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.main-nav a,
nav a {
  color: #4ea1ff;
  text-decoration: none;
  font-size: 14px;
}


/* =========================================================
   SEARCH SYSTEM
========================================================= */

.header-search {
  padding: 5px 0;
  width: 100%;
}

.header-search form {
  width: 100%;
}

.header-search input {
  width: 100%;
  max-width: 320px;
  padding: 10px;
  border: 1px solid #2c3b57;
  border-radius: 8px;
  background: #0b0f17;
  color: #fff;
  box-sizing: border-box;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

main {
  max-width: 1000px;
  margin: auto;
  padding: 16px;
}


/* =========================================================
   CONTENT CARDS
========================================================= */

.card {
  background: #121a2a;
  padding: 16px;
  margin-bottom: 15px;
  border-radius: 12px;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.cta {
  display: inline-block;
  padding: 12px 16px;
  background: #4ea1ff;
  color: #000;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  text-align: center;
  padding: 30px 20px;
  background: #121a2a;
  margin-top: 50px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #4ea1ff;
  margin: 0 6px;
  text-decoration: none;
}


/* =========================================================
   COOKIE BANNER
========================================================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: white;
  padding: 20px;
  z-index: 99999;
}


/* =========================================================
   COOKIE INNER LAYOUT
========================================================= */

.cookie-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* =========================================================
   COOKIE BUTTONS
========================================================= */

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus,
button:focus,
input:focus {
  outline: 2px solid #4ea1ff;
  outline-offset: 2px;
}


/* =========================================================
   RESPONSIVE TABLET & MOBILE
========================================================= */

@media (max-width: 768px) {

  /* =========================================
     LOGO SWITCH
  ========================================= */

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }


  /* =========================================
     MOBILE NAVIGATION
  ========================================= */

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }


  /* =========================================
     SEARCH FULL WIDTH
  ========================================= */

  .header-search {
    width: 100%;
  }

  .header-search input {
    max-width: 100%;
  }


  /* =========================================
     MAIN CONTENT
  ========================================= */

  main {
    padding: 15px;
  }

  .card {
    padding: 15px;
  }

}