@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --charcoal: #2d2d2d;
  --warm-gray: #6b6b6b;
  --light-gray: #a8a8a8;
  --background-gray: #f8f8f8;
  --pure-white: #ffffff;
  --off-white: #fafafa;
  --accent-gold: #d4af37;
  --accent-blue: #0066cc;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);

  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary-black);
  background-color: var(--pure-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Premium Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

nav.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 20px var(--shadow-light);
}

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

.nav-right {
  display: flex;
  align-items: center;
}

.logo {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.logo img {
  height: 40px;
  width: auto;
  transition: var(--transition);
  transform: scale(7.5);
  margin-left: 2.5rem;
  margin-top: 1.3rem;
}

.logo:hover img {
  opacity: 0.8;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
  align-items: center;
}

.social-links a {
  color: var(--charcoal);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
}

.social-links a:hover {
  color: var(--pure-white);
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Newsletter Signup */
.newsletter-section {
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--primary-black) 100%
  );
  color: var(--pure-white);
  padding: 4rem 0;
  margin: 4rem 0;
  position: relative;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: var(--pure-white);
  color: var(--primary-black);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial {
  background: var(--pure-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  border-left: 4px solid var(--accent-gold);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-gold);
  font-family: var(--font-display);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.testimonial-company {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

/* Media Section */
.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.media-logo {
  height: 40px;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(100%);
}

.media-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-black);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section - Magazine Style */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--pure-white);
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 300px;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  transform: rotate(-15deg);
  z-index: -1;
  opacity: 0.3;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -3%;
  width: 200px;
  height: 300px;
  background: linear-gradient(
    45deg,
    var(--primary-black) 0%,
    rgba(26, 26, 26, 0.1) 100%
  );
  transform: rotate(20deg);
  z-index: -1;
  opacity: 0.2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
  position: relative;
  overflow: visible;
  padding: 2rem 0;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary-black);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  position: relative;
  color: #d4af37 !important;
}

.hero-content h1::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8rem;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0.6;
}

.hero-tagline {
  font-size: 1.25rem;
  color: #d4af37;
  font-weight: 500;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-description-main {
  font-size: 1.1rem;
  /* color: var(--charcoal); */
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: -2rem;
  padding: 3rem 0;
  background: transparent;
  margin-top: 5rem;
}

.hero-image img {
  width: 500px;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.15) brightness(1.1);
  position: relative;
  z-index: 10;
  border-radius: 4px;
  background: transparent;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -1rem;
  width: 450px;
  height: 550px;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--charcoal) 100%
  );
  z-index: 1;
  transform: rotate(-2deg);
  border-radius: 4px;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: 400px;
  height: 500px;
  background: linear-gradient(
    45deg,
    var(--accent-gold) 0%,
    rgba(212, 175, 55, 0.4) 100%
  );
  z-index: 2;
  transform: rotate(3deg);
  border-radius: 4px;
  opacity: 0.8;
}

/* Premium Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-black);
  color: var(--pure-white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--primary-black);
}

.cta-button:hover {
  background: transparent;
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 15px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button-secondary:hover {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  border-color: #b8860b;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.cta-button-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--warm-gray);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* Premium Cards */
.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.indicator {
  background: var(--pure-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
  transform: scaleX(0);
  transition: var(--transition);
}

.indicator:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.indicator:hover::before {
  transform: scaleX(1);
}

.indicator h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.indicator p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Team Grid - Improved Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  background: var(--pure-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.team-member-header {
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--charcoal) 100%
  );
  color: var(--pure-white);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.team-member-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--charcoal);
}

.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-member-content {
  padding: 2.5rem 2rem;
}

.team-member-content p {
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.team-member-content p:last-child {
  margin-bottom: 0;
}

/* Executive Team Special Styling */
.team-member.executive {
  border-left: 4px solid var(--accent-gold);
}

.team-member.executive .team-member-header {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
  color: var(--primary-black);
}

.team-member.executive .team-member-header::after {
  border-top-color: #b8941f;
}

.team-member.executive .role {
  color: var(--primary-black);
  font-weight: 700;
}

/* Natural Text Integration Layouts */
.text-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 6rem 0;
}

.text-layout-offset {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
  margin: 6rem 0;
}

.text-layout-reverse {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
  margin: 6rem 0;
}

.text-content {
  padding: 0;
}

.text-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin: 2rem 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  max-width: none;
}

.text-content p.lead {
  font-size: 1.3rem;
  color: var(--primary-black);
  font-weight: 500;
  margin-bottom: 2rem;
}

.text-visual {
  position: relative;
}

.text-visual-bg {
  background: linear-gradient(
    135deg,
    var(--background-gray) 0%,
    var(--off-white) 100%
  );
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.text-visual-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.text-visual-accent {
  background: var(--primary-black);
  color: var(--pure-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
}

.text-visual-accent h3 {
  color: var(--accent-gold);
}

/* Mission Statement - Redesigned */
.mission-statement {
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--charcoal) 100%
  );
  color: var(--pure-white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  margin: 6rem 0;
  position: relative;
  overflow: hidden;
}

.mission-statement::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transform: rotate(45deg);
}

.mission-statement h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.mission-statement h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: var(--accent-gold);
}

.mission-statement p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Feature Highlight Sections */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 6rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-light);
}

.feature-content {
  background: var(--pure-white);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-visual {
  background: linear-gradient(
    135deg,
    var(--background-gray) 0%,
    var(--off-white) 100%
  );
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Quote Sections */
.quote-section {
  background: var(--background-gray);
  padding: 4rem 0;
  margin: 6rem 0;
  position: relative;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.quote-content blockquote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.quote-content cite {
  color: var(--warm-gray);
  font-size: 1rem;
  font-weight: 600;
}

/* Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat-card {
  background: var(--pure-white);
  padding: 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--charcoal);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* Bible Verse */
.bible-verse {
  background: var(--background-gray);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 4rem 0;
  border-left: 4px solid var(--accent-gold);
  position: relative;
}

.bible-verse p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.bible-verse cite {
  color: var(--warm-gray);
  font-size: 1rem;
  font-weight: 600;
}

/* Trust Indicators Section */
.trust-indicators {
  background: var(--off-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-info {
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--charcoal) 100%
  );
  color: var(--pure-white);
  text-align: center;
  padding: 4rem 0;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--pure-white);
}

/* Footer */
footer {
  background: var(--secondary-black);
  color: var(--light-gray);
  text-align: center;
  padding: 3rem 0;
}

footer p {
  font-size: 0.9rem;
}

/* Removed hover effects from hero image */

.hero-content h1 {
  background: linear-gradient(135deg, #c7971e, #ffeb8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Navigation active state */
.nav-links a.active {
  color: var(--primary-black);
}

.nav-links a.active::after {
  width: 100%;
}

/* Enhanced button interactions */
.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--border-radius);
  z-index: -1;
}

.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button:hover::after {
  opacity: 0.1;
}

/* Enhanced card hover effects */
.indicator:hover h3 {
  color: var(--accent-gold);
}

.team-member:hover h3 {
  color: var(--accent-gold);
}

/* Subtle background animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes subtleRotate {
  0%,
  100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(-1deg);
  }
}

@keyframes subtleRotateReverse {
  0%,
  100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(4deg);
  }
}

/* Removed floating animation from hero image */

.hero-image::before {
  animation: subtleRotate 8s ease-in-out infinite;
}

.hero-image::after {
  animation: subtleRotateReverse 10s ease-in-out infinite;
}

/* Enhanced mission statement */
.mission-statement:hover::before {
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Loading and page transition effects */
body {
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dynamic Angled Background System */
.angle-bg-top::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--accent-gold) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  transform: skewY(-2deg);
  z-index: -1;
}

.angle-bg-bottom::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    45deg,
    var(--primary-black) 0%,
    rgba(26, 26, 26, 0.1) 100%
  );
  transform: skewY(2deg);
  z-index: -1;
}

.angle-bg-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  bottom: 0;
  width: 200px;
  background: linear-gradient(45deg, var(--charcoal) 0%, transparent 70%);
  transform: skewX(-15deg);
  z-index: -1;
}

.angle-bg-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  bottom: 0;
  width: 200px;
  background: linear-gradient(-45deg, var(--accent-blue) 0%, transparent 70%);
  transform: skewX(15deg);
  z-index: -1;
  opacity: 0.6;
}

.angle-accent-small {
  position: relative;
}

.angle-accent-small::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.1;
}

.angle-divider {
  position: relative;
  overflow: hidden;
}

.angle-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  height: 100%;
  background: linear-gradient(
    15deg,
    transparent 45%,
    var(--background-gray) 50%,
    transparent 55%
  );
  z-index: -1;
}

/* Typography enhancements */
.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
    margin-left: 0;
  }

  .hero-image img {
    width: 400px;
    height: 500px;
  }

  .hero-image::before {
    width: 350px;
    height: 450px;
    right: 50%;
    transform: translateX(50%) rotate(-2deg);
  }

  .hero-image::after {
    width: 300px;
    height: 400px;
    right: 50%;
    transform: translateX(50%) rotate(3deg);
  }

  .hero-content h1::after {
    right: 50%;
    transform: translateX(50%);
    top: -2rem;
  }

  .text-layout-split,
  .text-layout-offset,
  .text-layout-reverse,
  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-content,
  .feature-visual {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image img {
    width: 350px;
    height: 450px;
  }

  .hero-image::before {
    width: 300px;
    height: 400px;
  }

  .hero-image::after {
    width: 250px;
    height: 350px;
  }

  .indicators-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .mission-statement,
  .bible-verse {
    padding: 2rem;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .text-visual-bg,
  .text-visual-accent,
  .feature-content,
  .feature-visual {
    padding: 2rem;
  }

  .quote-content blockquote {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 1rem;
  }

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

  .hero-image img {
    width: 300px;
    height: 400px;
  }

  .hero-image::before {
    width: 250px;
    height: 350px;
  }

  .hero-image::after {
    width: 200px;
    height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }

  .text-content h2 {
    font-size: 1.8rem;
  }

  .quote-content blockquote {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* CSS new styles */

/* Base nav styling */
nav {
  background: #fff;
  border-bottom: 1px solid #eee;
}

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

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

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hamburger button hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .nav-right {
    display: none; /* hide menu initially */
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 70px; /* below nav bar */
    right: 0;
    width: 220px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-right.active {
    display: flex;
  }

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

  .nav-toggle {
    display: block; /* show hamburger on mobile */
  }
}
.hero-section {
  position: relative;
  max-height: 138vh; /* full viewport */
  min-height: 90vh; /* full viewport */

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.hero-nav {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons .btn-spacex {
  margin-right: 1rem;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  /* background: #007bff; */
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  /* box-shadow: 12px 8px 24px rgba(0, 0, 0, 0.5); */
}

.scroll-indicator {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0.8;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    margin-top: 2rem;
  }
}
/* Reuse newsletter button styles for CTA link */
a.btn-spacex.cta-button {
  display: inline-block; /* makes <a> behave like button */
  padding: 1rem 2rem;
  background: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none; /* remove underline */
  cursor: pointer;
  transition: var(--transition);
}

a.btn-spacex.cta-button:hover {
  background: #b8941f;
  transform: translateY(-2px);
}
a.btn-spacex {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent; /* transparent base */
  color: var(--accent-gold); /* gold text */
  border: 2px solid var(--accent-gold); /* gold outline */
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

a.btn-spacex:hover {
  background: var(--accent-gold); /* fill with gold */
  color: var(--primary-black); /* dark text on hover */
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 2rem;
  }
}

/* Our Team Section */
.our-team {
  padding: 4rem 0;
  background: #f9f9f9;
  text-align: center;
}

.team-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.team-card .designation {
  font-size: 0.95rem;
  color: #666;
}

.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* makes circular */
  object-fit: cover; /* keeps image proportional */
  margin-bottom: 12px;
}
