/*
Theme Name: New Light & Power Reunion Theme
Theme URI: https://example.com
Author: Tom Mullins
Description: Custom reunion theme for New Light & Power.
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.6
Text Domain: nlp-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Fraunces:opsz,wght@9..144,700&display=swap');

:root {
  --nlp-red: #bb4a52;
  --nlp-red-dark: #8f3640;
  --nlp-blue: #2a6bb8;
  --nlp-blue-dark: #1f4f8c;
  --nlp-charcoal: #161a18;
  --nlp-cream: #f7f2ea;
  --nlp-gold: #b08a47;
  --nlp-white: #ffffff;
  --nlp-surface: rgba(255, 255, 255, 0.86);
  --nlp-border: rgba(188, 164, 125, 0.25);
  --nlp-shadow: 0 18px 45px rgba(16, 20, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--nlp-charcoal);
  background:
    radial-gradient(circle at 6% 7%, rgba(42, 107, 184, 0.13) 0%, rgba(42, 107, 184, 0) 42%),
    radial-gradient(circle at 90% 16%, rgba(176, 138, 71, 0.14) 0%, rgba(176, 138, 71, 0) 45%),
    radial-gradient(circle at 86% 72%, rgba(187, 74, 82, 0.1) 0%, rgba(187, 74, 82, 0) 38%),
    linear-gradient(180deg, #fcfaf7 0%, #f5eee5 100%);
  line-height: 1.6;
}

a {
  color: var(--nlp-blue-dark);
}

.site-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(176, 138, 71, 0.26);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

.brand strong {
  display: block;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand small {
  color: #4f5752;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(176, 138, 71, 0.24);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  text-decoration: none;
  color: var(--nlp-charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(42, 107, 184, 0.48);
  color: var(--nlp-blue-dark);
}

.hero {
  padding: 4.2rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4.7vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.03rem;
  color: #2b302c;
}

.hero-card,
.content-card {
  background: var(--nlp-surface);
  border: 1px solid var(--nlp-border);
  border-radius: 20px;
  box-shadow: var(--nlp-shadow);
}

.hero-card {
  padding: 1.2rem;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
}

.section {
  padding: 1.3rem 0;
}

.content-card {
  padding: 1.25rem;
}

.nlp-button,
button,
input[type="submit"] {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.12rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--nlp-blue) 0%, var(--nlp-red) 100%);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(42, 107, 184, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nlp-button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(42, 107, 184, 0.3);
}

.site-footer {
  margin-top: 2.1rem;
  background: #101413;
  color: #f5efe5;
}

.site-footer .site-inner {
  padding: 1.05rem 0;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-inner {
    width: min(1120px, 94vw);
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav a {
    font-size: 0.84rem;
    padding: 0.4rem 0.68rem;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .content-card,
  .hero-card {
    border-radius: 16px;
    padding: 1rem;
  }
}

.nlp-cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  background: rgba(22, 26, 24, 0.96);
  color: #fff;
  border: 1px solid rgba(176, 138, 71, 0.5);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.nlp-cookie-notice p {
  margin: 0;
  font-size: 0.95rem;
}

.nlp-cookie-notice a {
  color: #f5dbaa;
}

.nlp-cookie-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nlp-blue) 0%, var(--nlp-red) 100%);
  color: #fff;
  padding: 0.55rem 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .nlp-cookie-notice {
    flex-direction: column;
    align-items: stretch;
  }

  .nlp-cookie-btn {
    width: 100%;
  }
}
