/* ====== GLOBAL STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Inter", "Roboto", sans-serif;
  background-color: black;
  background-image: url("./assets/home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #dcdcdc;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== HEADER ====== */
.site-header {
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e6e6e6;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.logo__icon {
  font-size: 26px;
  margin-right: 8px;
}

.logo__text {
  line-height: 1.1;
}

/* ====== HERO SECTION ====== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__copy {
  max-width: 560px;
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e7e7e7;
}

.hero__line {
  font-size: 18px;
  margin-bottom: 6px;
  color: #c7c7c7;
}

.hero__contact {
  margin-top: 30px;
}

.contact__label {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 4px;
}

.contact__phone {
  font-size: 28px;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact__phone:hover {
  color: #ffd700;
}

/* ====== HERO VISUAL ====== */
.hero__visual {
  width: 100%;
  height: 320px;
  background: url("assets/lead-ingot.png") no-repeat center/contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* ====== FOOTER ====== */
.site-footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #999;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__info {
  display: flex;
  gap: 30px;
}

.footer__phone,
.footer__email {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__phone:hover,
.footer__email:hover {
  color: #ffd700;
}
