/*
Theme Name: Elevia
Author: Elevia
Version: 1.0
*/

/* =========================
   RESET GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.site-header {
  width: 100%;
  padding: 24px 40px;
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  max-height: 42px;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 32px;
}

.section p {
  font-size: 18px;
  max-width: 700px;
  color: #444;
}

/* =========================
   CTA
========================= */
.cta {
  background: #111;
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 38px;
  }

  .section h2 {
    font-size: 32px;
  }
}

/* ===============================
   HOME – HERO
================================ */
.home-hero {
  background: linear-gradient(180deg, #142846, #1c355d);
  color: #ffffff;
  padding: 120px 20px;
}

.home-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.home-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.home-hero p {
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 100px 20px;
  background: #ffffff;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #142846;
}

.section p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* ===============================
   CTA
================================ */
.cta {
  background: #142846;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.cta a {
  display: inline-block;
  background: #d8b14c;
  color: #142846;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.cta a:hover {
  background: #caa13f;
}

.site-footer {
  background: #0b1f3a;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
  font-size: 14px;
}

html, body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
.site-footer {
  position: relative !important;
  z-index: 10;
}