/* Sample CSS for a simple & elegant look */

/* 1. Font Imports (Example) */
/* You can import from Google Fonts like so:
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Open+Sans:wght@400;600&family=Poppins:wght@700&display=swap');
*/

/* 2. Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 3. Body & Overall */
body {
  font-family: 'Open Sans', sans-serif; /* Body text */
  color: #333;
  background-color: #f7f7f7;
  line-height: 1.6;
}

/* 4. Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav li a {
  font-family: 'Montserrat', sans-serif; /* Header/Nav text */
  font-weight: 500;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

nav li a:hover,
nav li a.active {
  color: #008b8b; /* Teal accent for hover/active */
}

/* 5. Hero Section */
.hero {
  background: url('../images/hero.jpg') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 139, 139, 0.5); /* Slight overlay for contrast */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Poppins', sans-serif; /* Example for headings */
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* 6. Features Section */
.features {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.features h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  color: #008b8b;
}

/* 7. specialize Section */
.specialize {
  background: #fff;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 1200px;
  border-top: 1px solid #ddd;
}

.specialize h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.specialize-item {
  margin-bottom: 1.5rem;
}

.specialize-item blockquote {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: #555;
}

/* 8. About Us Page */
.about-intro, .team {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.team-member {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 100px;
  border-radius: 50%;
  margin-right: 1rem;
}

/* 9. Services Page */
.services-list {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.service-item {
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #008b8b;
}

/* 10. Contact Page */
.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.contact-form textarea {
  min-height: 100px;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #008b8b;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.contact-details p {
  margin: 0.25rem 0;
}

/* 11. Footer */
footer {
  background: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

/* 12. Responsive Media Queries */
@media screen and (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  .team-member img {
    margin-bottom: 1rem;
  }
}
