/* FabWood Landing Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Alegreya Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== DESKTOP HEADER ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  position: relative;
  z-index: 10;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  height: 42px;
  width: auto;
}

.tagline {
  font-size: 23px;
  font-weight: 300;
  color: #53331e;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 30px;
  padding-left: 20px;
  border-left: 2px solid #84983a;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-contact .contact-label {
  font-size: 16px;
  font-weight: 600;
  color: #84983a;
}

.header-contact .contact-value {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
}

.header-contact .contact-value:hover {
  color: #84983a;
}

.contact-separator {
  color: #999;
  margin: 0 8px;
}

/* ========== MOBILE LOGO ========== */
.mobile-logo {
  display: none;
  background: #fff;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobile-logo-img {
  height: 42px;
  width: auto;
}

.mobile-tagline {
  font-size: 23px;
  font-weight: 300;
  color: #53331e;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 30px;
  padding-left: 20px;
  border-left: 2px solid #84983a;
}

/* ========== HERO / BACKGROUND ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: url('assets/background.jpg') center center / cover no-repeat;
}

/* ========== CARD ========== */
.card {
  background: #fff;
  border-radius: 20px;
  border: none;
  padding: 60px 50px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 29px rgba(0, 0, 0, 0.58);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .card:hover {
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.62);
  }
}

.card h1 {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.divider {
  width: 50px;
  height: 2px;
  background: #84983a;
  margin: 0 auto 32px;
  border-radius: 1px;
}

.divider-small {
  width: 40px;
  margin-bottom: 24px;
}

.card p {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ========== DOWNLOAD BUTTON ========== */
.download-btn {
  display: inline-block;
  background: #84983a;
  color: #fff;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.29);
}

.download-btn:hover {
  background: #6e8230;
  transform: translateY(-1px);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.35);
}

.download-btn:active {
  transform: translateY(0);
}

/* ========== MOBILE CONTACT (inside card) ========== */
.mobile-contact {
  display: none;
  margin-top: 50px;
  padding-top: 0;
  text-align: center;
}

.mobile-contact h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
}

.contact-row {
  padding: 10px 0;
  text-align: center;
}

.contact-row .contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #84983a;
  margin-right: 16px;
  display: inline;
}

.contact-row .contact-value {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  display: inline;
}

.contact-row .contact-value:hover {
  color: #84983a;
}

.contact-row .contact-separator {
  margin: 0 12px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .header {
    display: none;
  }

  .mobile-logo {
    display: flex;
    padding: 12px 16px;
  }

  .mobile-logo-img {
    height: 36px;
  }

  .mobile-tagline {
    font-size: 15px;
    padding-left: 12px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100vh - 72px);
    align-items: flex-start;
    padding: 24px 16px 40px;
  }

  .card {
    padding: 44px 28px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    border-radius: 16px;
    border: none;
  }

  .card h1 {
    font-size: 32px;
    font-weight: 300;
    color: #53331e;
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .card p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .download-btn {
    font-size: 14px;
    padding: 14px 40px;
    width: auto;
    border-radius: 6px;
  }

  .mobile-contact {
    display: block;
  }
}

@media (max-width: 400px) {
  .card {
    padding: 36px 22px;
  }

  .card h1 {
    font-size: 28px;
  }
}
