html,
body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* color: #3e2f1c; */
  line-height: 1.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg,  rgba(6, 6, 6, 0.95), rgba(11, 11, 11, 0.7)),
    url("/images/about.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

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

.hero-title {
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #f5d99e;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #e7e2d7;
  font-style: italic;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #3e2f1c;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.section-title-center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #786c5e;
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-weight: 300;
}

/* Story Section */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text {
  padding-right: 40px;
}

.story-paragraph {
  font-size: 1rem;
  line-height: 1.9;
  color: #3e2f1c;
  margin-bottom: 25px;
  text-align: justify;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(62, 47, 28, 0.15);
}

/* Founders Section */
.founders-section {
  padding: 120px 0;
  background-color: #f5f3f0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 80px;
}

.founder-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(62, 47, 28, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(191, 163, 106, 0.2);
}

.founder-image-container {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}

.founder-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  object-position: 50% 0%;
}

.founder-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #3e2f1c;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.founder-title {
  font-size: 0.95rem;
  color: #bfa36a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #786c5e;
  font-weight: 300;
}

/* Team Section */
.team-section {
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.team-card {
  background: white;
  padding: 50px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(62, 47, 28, 0.08);
  transition: all 0.4s ease;
  border-top: 3px solid #bfa36a;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(191, 163, 106, 0.25);
  border-top-color: #f5d99e;
}

.team-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: block;
}

.team-role {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3e2f1c;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.team-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #786c5e;
  font-weight: 300;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background-color: #f5f3f0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.value-item {
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(62, 47, 28, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: linear-gradient(135deg, #f5f3f0, #ffffff);
  box-shadow: 0 12px 40px rgba(191, 163, 106, 0.15);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #bfa36a;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.value-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #786c5e;
  font-weight: 300;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(62, 47, 28, 0.8) 0%, rgba(191, 163, 106, 0.4) 100%),
    url("/images/cta-bg.jpg") center / cover no-repeat;
  text-align: center;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f5d99e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #e7e2d7;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  padding: 16px 50px;
  background-color: #bfa36a;
  color: #f5f3f0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s ease;
  border: 2px solid #bfa36a;
}

.cta-button:hover {
  background-color: transparent;
  color: #bfa36a;
  box-shadow: 0 8px 25px rgba(191, 163, 106, 0.3);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-text {
    padding-right: 0;
  }

  .founders-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .container {
    padding: 0 20px;
  }
}

.team-image {
  max-height: 130px;
}
