/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #fafaf8;
  color: #2b2b2b;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #b7831d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* makes link use parent text color */
}


/* Icon style */
.logo-icon {
  width: 32px;
  height: 32px;
  animation: float 2.5s ease-in-out infinite;
  filter: brightness(0) sepia(1) hue-rotate(60deg) saturate(5); /* olive theme */
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Optional: hover effect on logo */
.logo:hover .logo-icon {
  transform: scale(1.2) translateY(-3px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
   font-family: futura pt;
  font-size: 1.3rem;
  text-decoration: none; 
  color: #2b2b2b; 
  font-weight:500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b7831d;
}

.nav-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: 2px solid #b7831d;
  color: #b7831d !important;
  font-weight: 600;
}

.nav-btn:hover {
  background: #b7831d;
  color: #fff !important;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  font-size: 20px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 999;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  font-size: 20px;
  display: block;
  letter-spacing: 1px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: #2b2b2b;
  transition: all 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background: #b7831d;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: little arrow styling */
.dropbtn::after {
  content: " ";
  font-size: 0.7rem;
  color: #b7831d;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem;
  text-align: center;
  background: #ffefd2; /* soft olive background */
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  color: #2b2b2b;
}

.hero-title .highlight {
  color: #b7831d;
}

.hero-subtitle .highlight {
  color: #b7831d;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #444a56;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-cta .btn {
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary button */
.btn.primary {
  background: #b7831d;
  border: 2px solid #b7831d;
  color: #fff;
}

.btn.primary:hover {
  background: transparent;
  color: #b7831d;
}

/* Value Section */
.value-section {
  background: #fff;
  padding: 4rem 2rem;
}

.value-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.value-heading {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
  position: relative;
}

.value-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #b7831d; /* olive underline */
  margin-top: 0.5rem;
  border-radius: 2px;
}

.value-container p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #444a56;
  line-height: 1.7;
}

/* Messaging Foundation Section */
.messaging-section {
  background: #fffaf2; /* pale olive-tinted background */
  padding: 4rem 2rem;
}

.messaging-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.messaging-heading {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
  position: relative;
}

.messaging-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #b7831d; /* olive underline */
  margin-top: 0.5rem;
  border-radius: 2px;
}

.messaging-container p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #444a56;
  letter-spacing: 1px;
  line-height: 1.7;
}

/* Your Turn Section */
.yourturn-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.yourturn-container {
  max-width: 800px;
  margin: 0 auto;
}

.yourturn-heading {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2b2b2b;
  margin-bottom: 2rem;
  position: relative;
}

.yourturn-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #b7831d; /* olive underline */
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

.yourturn-container p {
  font-size: 1.2rem;
  color: #444a56;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.yourturn-container em {
  font-style: italic;
  color: #b7831d; /* olive emphasis */
}

.highlight {
  color: #b7831d;
  font-weight: 600;
}
/* How It Works Section */
.howitworks {
  background: #f9f9f9;
  padding: 5rem 2rem;
  text-align: center;
}

.howitworks-container {
  max-width: 700px;
  margin: 0 auto;
}

.howitworks-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 3rem;
  color: #2b2b2b;
}

.how-step {
  margin-bottom: 2rem;
}

.how-step p {
  font-size: 1.2rem;
  color: #444a56;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.step-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  display: block;
}

.arrow img {
  width: 60px;   /* larger arrow */
  height: 100px; /* long arrow shape */
  margin: 2rem auto;
  display: block;
  filter: invert(36%) sepia(44%) saturate(441%) hue-rotate(48deg) brightness(92%) contrast(88%);
  opacity: 0.8;
}
/* This Is For You Section */
.for-you {
  background: #fff;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.for-you-box {
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 20px;
  max-width: 1100px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.for-you-title {
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: #2b2b2b;
}

.for-you-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.for-you-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.for-you-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.for-you-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.2rem;
}

.for-you-item p {
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #444a56;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .for-you-columns {
    grid-template-columns: 1fr;
  }
}
/* Final CTA Section */
.cta-section {
  background: #2b2b2b;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  color: #f1f1f1;
}

.cta-heading {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.cta-button {
  display: inline-block;
  background: #b7831d; /* olive tone from your theme */
  color: #2b2b2b;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background: #b7831d; /* darker olive */
  color: #fff;
  transform: translateY(-4px);
}
/* Footer Section */
.footer {
  background: url('img4.jpg') center/cover no-repeat; /* vintage style */
  position: relative;
  color: #fff;
  min-height: 400px; /* reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-overlay {
  background: rgba(0,0,0,0.65); /* dark overlay */
  width: 100%;
  padding: 3rem 2rem; /* reduce padding */
  display: flex;
  justify-content: center;
  border-radius: 0; /* remove rounded corners */
}

.footer-inner {
  max-width: 800px;
  text-align: center;
}

.footer-name {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-respect {
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #b7831d;
}

.footer-links {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  letter-spacing: 1px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b7831d;
}

.footer-copy {
  font-size: 0.9rem;
  color: #fdefd4;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-name {
    font-size: 1.6rem;
  }
  .footer-respect,
  .footer-socials,
  .footer-links,
  .footer-copy {
    font-size: 0.95rem;
  }
}
.footer-socials {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b7831d;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  filter: brightness(1); /* white by default */
  transition: transform 0.3s ease;
}

.social-icons a img:hover,
.social-icons a img:focus {
  transform: scale(1.3); /* enlarge on hover for prominence */
}
