/* 🔹 Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Inter:wght@400;600&display=swap');

/* 🔹 Reset & Basic Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: black;
  overflow-x: hidden;
}

/* 🔹 Top Bar Section */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #b1d0f3;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* 🔹 Social Media Icons */
.social-media {
  display: flex;
  align-self: center;
  gap: 15px;
}

.social-media a {
  text-decoration: none;
}

.social-media img {
  width: 30px;
  height: 30px;
}

/* 🔹 Logo */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: black;
  text-align: center;
  flex-grow: 1;
  font-family: 'Kaushan Script', cursive;
}

/* 🔹 Navigation */
.navigation {
  display: flex;
  justify-content: flex-end;
}

.navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navigation li {
  display: inline;
}

.navigation a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* 🔹 Responsive Top Bar for Mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
  }

  .social-media {
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo {
    text-align: center;
    font-size: 24px;
  }

  .navigation {
    justify-content: center;
    width: 100%;
  }

  .navigation ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* 🔹 Social Media Icons */
.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  text-decoration: none;
}

.social-media img {
  width: 30px;
  height: 30px;
}

/* 🔹 Logo */
.logo {
  font-size: 30px;
  font-weight: bold;
  color: black;
  text-align: center;
  flex: 1;
  font-family: 'Kaushan Script', cursive;
}

/* 🔹 Navigation Bar */
.navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navigation li {
  display: inline;
}

.navigation a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* 🔹 Welcome Screen Section */
.welcome-screen {
  background-image: url('about4background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 70px; /* Adjust to fit below fixed top bar */
  position: relative;
}

/* 🔹 Welcome Content */
.welcome-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 70%;
  text-align: center;
}

/* 🔹 Welcome Title */
.welcome-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 50px;
  color: white;
  text-align: center;
  margin-bottom: 15px;
}

/* 🔹 Landscape Image Above Text */
.landscape-img {
  width: 100%;
  max-height: 350px; /* Increased to show full image */
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* 🔹 Welcome Text */
.welcome-text {
  text-align: left;
  font-size: 18px;
  color: white;
  font-weight: 400;
  line-height: 1.6;
}

/* 🔹 Add Bullet Points to Welcome Text */
.welcome-text p {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.welcome-text p::before {
  content: "•";
  color: #ffcc00;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 4px;
}

/* 🔹 Services Section */
.services-section {
  background-color: white;
  padding: 30px 20px;
  text-align: center;
  margin-top: 0 !important;
}

/* 🔹 "Our Services" Title */
.services-section h2 {
  font-family: 'Kaushan Script', cursive;
  font-size: 50px;
  color: #207972;
  margin-top: 0;
  padding-top: 0;
}

/* 🔹 Services Grid */
.service-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* 🔹 Individual Service Item */
.service-images .service-item {
  text-align: center;
  flex: 1 1 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🔹 Service Images */
.service-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* 🔹 Service Title */
.service-images .service-item h3 {
  font-family: 'Kaushan Script', cursive;
  font-size: 24px;
  color: #207972;
  margin: 10px 0;
}

/* 🔹 Service Description */
.service-images .service-item p {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 16px;
  margin: 10px 0;
}

/* 🔹 More Info Button */
.service-images .service-item .more-info-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #207972;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  align-self: center;
}

.service-images .service-item .more-info-btn:hover {
  background-color: #165c4a;
}

/* 🔹 Map Section */
.map-section {
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding: 0;
  background-color: #b1d0f3;
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* 🔹 Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #b1d0f3;
  color: black;
  font-weight: 600;
  font-size: 16px;
}

/* 🔹 Mobile/Tablet Screens */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .logo {
    font-size: 24px; /* Adjusted for smaller screens */
    margin-bottom: 10px;
  }

  .social-media {
    justify-content: center;
    margin-bottom: 10px;
  }

  .navigation {
    justify-content: center;
    width: 100%;
  }

  .navigation ul {
    flex-direction: column;
    gap: 10px;
  }

  .welcome-screen {
    background-attachment: scroll;
    padding-top: 100px; /* Adjusted for fixed header */
  }

  .welcome-content {
    max-width: 90%;
  }

  .landscape-img {
    max-height: 250px;
  }

  .welcome-title {
    font-size: 40px;
  }

  .welcome-text {
    font-size: 16px;
  }

  .service-images {
    flex-direction: column;
    gap: 10px;
  }

  .service-images .service-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-images img {
    height: 180px;
  }

  .service-images .service-item h3 {
    font-size: 20px;
  }

  .service-images .service-item p {
    font-size: 14px;
  }

  .service-images .service-item .more-info-btn {
    padding: 8px 16px;
  }
}
