/* ============================
   Lucidpay Limited - style.css (v2)
   Refined corporate layout
   ============================ */

/* --- VARIABLES --- */
:root {
  --navy: #091e61;
  --blue-accent: #00a2ff;
  --white: #ffffff;
  --gray-light: #f4f5f7;
  --gray-dark: #222;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--white);
  color: var(--gray-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* --- CONTAINERS --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--navy);
  padding: 1rem 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--blue-accent);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg, #091e61, #0b287a);
  color: var(--white);
  text-align: center;
  padding: 12rem 2rem 8rem;
  margin-top: 80px;
}

.hero img.hero-logo {
  max-width: 280px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.cta-button {
  background: #ffffff;
  color: #091e61;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #00a2ff;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* --- SECTIONS --- */
section {
  padding: 5rem 2rem;
}

section:nth-child(even) {
  background: var(--gray-light);
}

h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  text-align: center;
}

p {
  color: var(--gray-dark);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- FOOTER --- */
footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

footer a {
  color: var(--blue-accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 4rem 1.5rem;
  }
}
