/* ------------------ Base Styles ------------------ */
body {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  background-color: #F2E7C9;
  color: #3F4025;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.dev-title {
  font-size: 2rem;
  color: #934C28;
  text-align: center;
}

/* ------------------ Hero Section ------------------ */
.hero {
  background: url('assets/logo-scroll-pattern.png') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2E7C9;
  position: relative;
}

.hero-overlay {
  background-color: rgba(63, 64, 37, 0.85);
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
  text-align: center;
}

.hero-logo {
  width: 100px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.scroll-down {
  font-size: 2rem;
  animation: bounce 1.5s infinite;
  margin-top: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ------------------ Scroll Story Section ------------------ */
.scroll-experience {
  background: url('assets/scroll-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 4rem 1rem;
}

.scroll-bg {
  background-color: rgba(255, 250, 240, 0.85);
  padding: 2rem;
  border-radius: 12px;
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* ------------------ Founders Slider ------------------ */
.founders-slider {
  display: flex;
  justify-content: center;     /* Center horizontally */
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;             /* For mobile wrap support */
  padding: 2rem 0;
}


.founder {
  min-width: 180px;
  text-align: center;
  scroll-snap-align: center;
}

.founder img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

/* ------------------ Join Form ------------------ */
.join-box {
  margin-top: 3rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

input, textarea, select {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #C88A45;
  font-size: 1rem;
  font-family: inherit;
}

select {
  background-color: #fff8ef;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background-color: #C88A45;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

/* ------------------ Floating Services Section ------------------ */
.services-float {
  background-color: #F2E7C9;
  padding: 4rem 1rem;
}

.service-float {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service {
  background-color: #243346;
  color: #F2E7C9;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

/* ------------------ Footer ------------------ */
.footer {
  background-color: #3F4025;
  color: #F2E7C9;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer a {
  color: #C88A45;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* ------------------ Responsive ------------------ */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .founders-slider {
    flex-direction: row;
    overflow-x: scroll;
  }

  .service {
    font-size: 1rem;
  }
}
