@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Hero section */
.hero {
  height: calc(100vh - 70px);
  padding: 60px;
  text-align: left;
  animation: fadeIn 1.2s ease forwards;
}

.hero-text {
  max-width: 900px;
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  cursor: default;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

/* Letter hover effect */
.hero-text h1 span {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center bottom;
}

.hero-text h1 span:hover {
  transform: translateY(-15px) scale(1.3) rotate(2deg);
  color: #ff6b6b;
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
  position: relative;
}

/* Navbar */
.navbar {
  border-bottom: 3px solid #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ZACH header reactive effect */
.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  padding: 5px 10px;
}

.navbar-brand:hover {
  transform: scale(1.1) rotate(-2deg);
  background: #000;
  color: #fff !important;
  border-radius: 4px;
  letter-spacing: 4px;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-brand:hover::after {
  transform: scaleX(1);
  background: #fff;
}

.nav-link {
  color: #000 !important;
  margin-left: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #000;
  transition: width 0.3s;
  margin: 0 auto;
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  border-radius: 0;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Footer - thin, consistent across pages */
.custom-footer {
  border-top: 3px solid #000;
  background: white;
  padding: 20px 0;
  margin-top: auto;
  height: 60px; /* match header height */
  display: flex;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-icons a {
  color: #333;
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-icons a:hover {
  color: #000;
  transform: translateY(-2px);
}

.copyright {
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .custom-footer {
    height: auto;
    padding: 15px 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Journey Section - Circular Roadmap Style */
.journey-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 50px 0;
  gap: 40px;
}

.journey-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 4px;
  background: #000;
  z-index: 1;
}

.journey-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.journey-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.journey-circle:hover {
  transform: scale(1.15);
  background: #ff6b6b;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.journey-content {
  max-width: 250px;
  margin: 0 auto;
}

.journey-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Mobile Responsive - Stack vertically */
@media (max-width: 768px) {
  .journey-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .journey-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background: #000;
  }

  .journey-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .journey-circle {
    margin: 0;
  }

  .journey-content {
    max-width: none;
  }
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* Navbar */
.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  transition: 0.3s;
}

.nav-link:hover {
  color: #555;
}

/* Contact button style */
.contact-btn {
  background: linear-gradient(135deg, #000, #444);
  color: #fff !important;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.contact-btn:hover {
  background: linear-gradient(135deg, #222, #000);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Hero Section */
.hero {
  height: 90vh;
  background: #f8f9fa;
}

/* Contact Page */
.contact-bg {
  background: linear-gradient(135deg, #fafafa, #eaeaea);
}

.send-btn {
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #000, #333);
}

/* Footer */
footer {
  background: #fff;
}

.journey-section {
  background-color: #f8f9fa;
}

.journey-step .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}



