/* Custom Styles for Mobile-Friendly Page */

/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
}

/* Hero Section */
#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), url('img/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#hero .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

/* Services Section */
#services {
  padding: 60px 0;
}

#services .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#services .card:hover {
  transform: translateY(-10px);
}

#services .card-body {
  text-align: center;
  padding: 30px;
}

#services .card-body i {
  color: #007bff;
  margin-bottom: 20px;
}

#services .card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

#services .card-body p {
  font-size: 1rem;
  color: #666;
}

/* Projects Section */
#projects {
  padding: 60px 0;
}

#projects .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#projects .card:hover {
  transform: translateY(-10px);
}

#projects .card-img-top {
  height: 200px;
  object-fit: cover;
}

#projects .card-body {
  padding: 20px;
  text-align: center;
}

#projects .card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

#projects .card-text {
  font-size: 1rem;
  color: #666;
}

#projects .btn {
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* Footer */
footer {
  background: #343a40;
  color: #fff;
  padding: 40px 0;
}

footer h5 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

footer p {
  font-size: 0.9rem;
  color: #ccc;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #007bff;
}

footer .fab {
  margin-right: 10px;
  font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1rem;
  }

  #services .card, #projects .card {
    margin-bottom: 20px;
  }

  footer .col-md-4 {
    margin-bottom: 20px;
  }
}