.site-header {
  background-color: #f2f2f2;
  width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.nav {
  display: flex;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.nav a:hover {
  opacity: 0.7;
}

.hero {
  width: 100%;
  height: 80vh;
  background-image: url('./images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 300px;
  width: 80%;
  height: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.about-owner {
  padding: 60px 24px;
  background-color: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 40px;
}

.owner-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.owner-description {
  flex: 1;
}

.owner-description h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #000;
}

.owner-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.owner-skills {
  margin-top: 32px;
}

.owner-skills h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #000;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.skills-list li {
  background-color: #f2f2f2;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.contact-info {
  margin-top: 32px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #000;
}

.contact-info p {
  font-size: 1rem;
  margin: 6px 0;
}

.contact-info a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.contact-info a:hover {
  color: #0077ff; 
}

.social-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

.map-section {
  width: 100%;
  margin: 0; 
  text-align: center; 
}

.map-location {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.map-section iframe {
  width: 100%;
  height: 300px; 
  border: 0;
  border-radius: 8px; 
}

.site-footer {
  background-color: #f2f2f2;
  width: 100%;
  padding: 20px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-logo {
  height: 28px;
  width: auto;
}


@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav a {
    margin: 8px 12px;
  }

  .hero {
    height: 60vh;
  }

  .hero-logo {
    max-width: 220px;
  }

  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .owner-image img {
    max-width: 200px;
    margin-bottom: 16px;
  }

  .owner-description h2 {
    font-size: 1.7rem;
  }

  .owner-description p {
    font-size: 0.95rem;
  }

  .skills-list {
    justify-content: center;
  }

  .contact-info {
    text-align: center;
  }

  .map-section iframe {
    height: 240px;
    border-radius: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
  }
}
