/*
Theme Name: Genovia Partners v2
Theme URI:
Author: Genovia
Description: Single-page WordPress theme for Genovia Partners.
Version: 0.2
License: GNU General Public License v2 or later
Text Domain: genovia-partners
*/

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* ── Base ───────────────────────────────────────────────── */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  color: #eeeeee;
  background: linear-gradient(135deg, #213d61 0%, #122a3b 25%, #061a37 50%, #122a3b 75%, #213d61 100%);
  background-size: cover;
  background-attachment: fixed;
  
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  margin: 0;
}

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Site Header ────────────────────────────────────────── */
.site-header-container {
  padding: 28px 40px 20px;
  max-width: none;
}
.site-logo {
  display: block;
  height: 56px;
  width: auto;
}

/* ── Main Content ───────────────────────────────────────── */
.site-main {
  padding-bottom: 120px;
}

/* ── Intro ──────────────────────────────────────────────── */
.intro {
  padding: 80px 0 0;
}

.intro-headline {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #eeeeee;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.3;
}

.intro-body {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: #eeeeee;
}

/* ── About ──────────────────────────────────────────────── */
.about {
  padding: 48px 0 0;
}

.about p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #eeeeee;
  margin-bottom: 28px;
}

.about p:last-child {
  margin-bottom: 0;
}

.about p.footer-message{
  font-size: 16px;
  margin-top: 60px;
}

.about a {
  color: #eeeeee;
  text-decoration: none;
  border-bottom: 1px solid #9ca3af;
  transition: border-color 0.2s ease;
}

.about a:hover {
  border-color: #eeeeee;
}


/* ── Contact ────────────────────────────────────────────── */
.contact {
  padding: 64px 0 0;
}

.contact-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #eeeeee;
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list a {
  font-size: 16px;
  font-weight: 400;
  color: #eeeeee;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-list a:hover {
  border-bottom-color: #1c1c1c;
}

/* ── Site Footer ────────────────────────────────────────── */
.site-footer {
  padding: 0 0 64px;
}

.copyright {
  font-size: 11px;
  font-weight: 400;
  color: #eeeeee;
  letter-spacing: 0.02em;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }

  .site-header-container {
    padding: 30px 0 0;
    border-radius: 0;
  }
  .site-header-container > a {
    padding: 0 20px;
    display: flex;
  }
  .intro {
    padding: 60px 0 0;
  }

  .intro-body {
    font-size: 20px;
  }

  .about {
    padding: 56px 0 0;
  }

  .section-divider {
    margin: 60px 0 0;
  }

  .contact {
    padding: 48px 0 0;
  }

  .site-footer {
    padding: 0 0 48px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .site-header-container {
    padding: 20px 0 0;
  }
  .site-header-container > a{
    padding: 0 10px;
  }

  .site-logo {
    height: 42px;
  }

  .intro-body {
    font-size: 18px;
  }

  .site-main {
    padding-bottom: 80px;
  }
}

