/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

/* ===== Header ===== */
header {
  background-color: #24a19c;
  padding:10px;
  color: white;
}

header .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo img.profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid white;
}

/* ===== Navigation ===== */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
  background-color: #f0f0f0;
  color: black;
}

/* ===== About Me ===== */
#about-me {
  padding: 60px 20px;
  text-align: center;
}

.about-me-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.about-me-content p {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  font-size: 28px;
  margin: 40px 0 20px 0;
  color: #24a19c;
  font-family: 'Handlee', cursive;
}

/* ===== Services ===== */
#service .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  width: 330px;
  transition: transform 0.3s;
  height: 330px;
  cursor: pointer;
  margin-bottom: 5px;
}

.card:hover {
 transform:scale(1.1)}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-desc {
  padding: 15px;
  text-align: center;
}

.service-desc h3 {
  margin-bottom: 10px;
}

/* ===== Contact Section ===== */
#contact {
  padding: 6px 2px;
  background: #f5f5f5;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.contact-map,
.contact-info {
  flex: 1 1 350px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 22px;
 
  color: #24a19c;
}

.contact-info p {

  font-size: 16px;
  color: #333;
  height: 50px;
}

.contact-info i {
  color: #24a19c;
  margin-right: 10px;
}

/* ===== Footer ===== */footer {
  background-color: #24a19c;
  color: white;
  padding: 20px;
  margin-top: 40px;
}

footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centered */
  align-items: center;
  gap: 15px;
}

footer .copyright,
footer .social {
  flex: 0 0 auto;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .social a {
  margin: 0 px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

footer .social a:hover {
  color: #ffef96;
}


/* ===== Mobile Full Width Responsive ===== */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 15px;
  }

  header .row,
  nav ul,
  #service .row,
  .contact-wrapper,
  footer .row {
    flex-direction: column;
    width: 100%;
  }

  nav ul {
    align-items: center;
    gap: 8px;
  }

  #about-me,
  section {
    padding: 30px 10px;
  }

  .about-me-content h3 {
    font-size: 22px;
  }

  .about-me-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto;
  }

  .contact-map iframe {
    width: 100%;
    height: 250px;
  }

  footer .copyright,
  footer .social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo img.profile-photo {
    width: 60px;
    height: 60px;
  }

  nav ul li a {
    padding: 5px 10px;
    font-size: 14px;
  }

  .section-title,
  .service-desc h3,
  .contact-info h3 {
    font-size: 18px;
  }
}
