* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Playfair Display';
  background-color: #fff;
  color: #000000;
  text-align: center;
  padding-top: 80px; /* 👈 add this to push all content below navbar */
  text-align: left;  /* default alignment */
}

.footer-image {
  width: 100%;
  height: 130px;
  background-image: url('footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
}

.footer-text {
  color: white;        /* or any color that contrasts with the image */
  font-size: 16px;
  font-weight: normal;
  text-shadow: 1px 1px 2px black; /* helps make it readable */
  margin: 0;
}


/* NAVBAR */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 2rem;
  background-color: #000000;
  border-bottom: 2px solid #090909;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  font-family: 'Georgia', serif;;
}



.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-logo img {
  height: 62px;  /* Try 24px, 32px, 40px – whatever looks right */
  width: auto;   /* Keeps proportions correct */
  object-fit: contain;  /* Ensures it doesn't stretch */
}

.nav-center {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: space-between; /* Or: space-around / space-evenly */
  padding: 1rem;
  margin-right: 40px;

}

.nav-center li a{
  position: relative;
  font-size: 17px; 
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-center li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s ease;
}

.nav-center li a:hover::after {
  width: 100%;
}
/* Top section */
.project-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e362d; /* dark green background */
  color: #ffffff;
  padding: 60px 80px;
  flex-wrap: wrap;
}

.project-intro .intro-text {
  flex: 1 1 50%;
  padding-right: 40px;
}

.project-intro .intro-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.project-intro .intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.project-intro .intro-image {
  flex: 1 1 40%;
  text-align: center;
}

.project-intro .intro-image img {
  max-width: 100%;
  height: auto;
}

/* Bottom section */
.project-details {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  padding: 40px 60px 100px;
  flex-wrap: wrap;
  text-align: center;
}

.project-details .detail-box {
  flex: 1 1 180px;
  margin: 10px;
}

.project-details .detail-box h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.project-details .detail-box p {
  font-size: 1rem;
  color: #333;
}

.section-divider {
  margin: 60px auto;
  width: 80px;
  border: none;
  border-top: 3px solid #333; /* or use your accent color */
}





/* STEP CARDS */
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-family: 'Playfair Display';
}

.step-card-header h2 {
  font-family: 'Playfair Display';
  font-size: 1.88rem;
  margin-bottom: 10px;
}

.step-card-number {
  color: #455143;
  margin-right: 8px;
  font-weight: bold;
  font-size: 1.88rem;
}

.step-goal {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #222;
}

.step-card-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.step-card-column {
  flex: 1;
  min-width: 280px;
}

.step-card-column h3 {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.step-card-column ul {
  padding-left: 1.2rem;
  list-style-type: disc;
  color: #333;
  line-height: 1.6;
}

.step-card-image {
  text-align: center;
  margin-top: 20px;
}

.step-card-image video {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.step-card-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.scroll-box {
  width: 100%;
  max-width: 800px;   /* optional: keeps it from being too wide */
  height: 500px;      /* the visible "window" height */
  overflow-y: scroll; /* enables vertical scroll */
  border: 2px solid #ccc;
  margin: auto;
}

.scroll-box img {
  width: 100%;   /* scales image to container width */
  height: auto;  /* keeps proportions */
  display: block;
}

.caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  align-items: center;
  text-align: center;
}

.icon {
  margin-right: 8px;
  color: #455143;
  font-size: 1.1rem;
  
}
/* Hide hamburger by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  background-image: url('background.png'); /* your marble background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 100vh;   /* flexible height */
  height: auto;        /* allow content to expand */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* stack text/image on smaller screens by default */
  text-align: center;
  color: white;
  position: relative;
  font-family: 'Playfair Display';
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* soft overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  letter-spacing: 3.5px;
  line-height: 1.1;
  font-weight: lighter;
}

.subtitle {
  font-size: 1.2rem;
  margin: 20px 0;
  letter-spacing: 2px;
  display: block;
  padding: 10px 20px;
}

.hero-button {
  text-decoration: none;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: 20px;
  border: 2px solid white;
  color: white;
  background: transparent;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

.hero, 
.hero-content, 
h1, 
.subtitle {
  text-align: center;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav-center {
    display: none; /* Hide menu on mobile by default */
    flex-direction: column;
    position: absolute;
    top: 70px;  /* below navbar */
    right: 20px;
    background: black;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-center.show {
    display: flex; /* Show when toggled */
  }

  .menu-toggle {
    display: block; /* Show hamburger */
  }


  /*here*/
 

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

 
  .subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 10px 0;
  }

  .hero-button {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .hero img {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
  }

}