/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}


/* Space Sections */
.space-section {
  height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.space-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.space-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.space-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #A21A5C; /* Brand color */
}

.space-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #777777;
}

.space-content .btn {
  display: inline-block;
  background: #A21A5C;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.space-content .btn:hover {
  background: #39968d;
}

/* Section Backgrounds */
.who-we-are {
  background-image: url('images/who-we-are.jpg');
}

.what-we-do {
  background-image: url('images/what-we-do.jpg');
}

.our-team {
  background-image: url('images/our-team.jpg');
}

/* Responsive Design */
@media (max-width: 1024px) {
  .space-content h1 {
    font-size: 2.5rem;
  }
  .space-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .space-content h1 {
    font-size: 2rem;
  }
  .space-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .space-content h1 {
    font-size: 1.6rem;
  }
  .space-content p {
    font-size: 0.9rem;
  }
}
