/* === ROOT & RESET === */
:root {
  --bg-color: #121212;
  --text-color: #eaeaea;
  --header-bg: #1f1f1f;
  --accent: #555;
  --button-bg: #eee;
  --button-text: #111;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

/* === HEADER === */
header {
  position: relative;
  background: url("images/59a84d6f-30fa-4e57-9684-8653205a90ab.jpg") no-repeat center center/cover;
  color: white;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

header h1,
header img,
header nav {
  position: relative;
  z-index: 1;
}

header .logo {
  max-height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: var(--accent);
}

/* === SECTION BOX STYLING === */
.section-box {
  background: #181818;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

/* HERO */
#hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* ABOUT */
#about p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* INFO IMAGE */
.info-image {
  display: block;
  margin: 20px auto;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* CONTACT FORM */
form {
  max-width: 600px;
  margin: 0 auto;
  background: #222;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-weight: 600;
  color: #eee;
  font-size: 1.05rem;
}

form input,
form textarea {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  background: #333;
  color: #eee;
  box-shadow: inset 0 0 6px #111;
  transition: box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  box-shadow: 0 0 8px 2px #25d366;
}

form button {
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #25d366;
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(37,211,102,0.7);
  transition: background 0.3s ease;
}

form button:hover {
  background: #1da851;
  box-shadow: 0 6px 14px rgba(29,168,81,0.9);
}

/* WhatsApp link */
#contact a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
  transition: color 0.3s ease;
}

#contact a img {
  margin-right: 8px;
}

#contact a:hover {
  color: #25d366;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: var(--header-bg);
  color: white;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 850px) {
  .section-box {
    max-width: 90%;
    padding: 30px 20px;
  }

  header nav ul {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 20px 10px;
  }

  header h1 {
    font-size: 2rem;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .section-box {
    padding: 25px 15px;
  }

  form {
    max-width: 100%;
    padding: 20px 15px;
  }

  #hero h2 {
    font-size: 1.6rem;
  }

  #hero p {
    font-size: 1rem;
  }
}