/*
Theme Name: GeneratePress Child
Template: generatepress
*/

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f7f8ff;
}

/* =========================
   HEADER
========================= */

.site-header {
  width: 100%;
  height: 92px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(93, 80, 190, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  max-width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 58px;
  display: block;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 44px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #17224d;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav .current-menu-item > a,
.nav a:hover {
  color: #5a38e8;
}

.header-btn {
  height: 46px;
  padding: 0 25px;
  border-radius: 7px;
  background: linear-gradient(135deg, #7b4df2 0%, #5434d8 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(91, 60, 220, 0.28);
  transition: all 0.25s ease;
}

.header-btn .icon {
  display: flex;
  align-items: center;
}

.header-btn svg {
  display: block;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(91, 60, 220, 0.34);
}

/* =========================
   FOOTER
========================= */

.site-footer-custom {
  background: linear-gradient(135deg, #111a4d 0%, #172464 100%);
  color: #ffffff;
  padding: 60px 20px 25px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 60px;
}

.footer-brand img {
  max-width: 170px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #5fd0ff;
}

.footer-bottom {
  max-width: 1120px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header {
    height: 78px;
  }

  .logo img {
    height: 48px;
  }

  .header-btn {
    padding: 0 16px;
    font-size: 14px;
  }

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

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}