* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #f3efe6;
  color: #1b2b22;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("hyn_img.jpg") center/cover no-repeat;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 18, 0.55);
}

.top-bar {
  position: absolute;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.location {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.btn {
  background: #c99b3b;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  font-size: 14px;
}

.scroll {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.8;
}

/* CONTACT */
.contact {
  display: flex;
  justify-content: space-between;
  padding: 80px 10%;
  background: #f3efe6;
}

.contact-left {
  width: 45%;
}

.contact-left h5 {
  letter-spacing: 3px;
  font-size: 12px;
  color: #8a7a5a;
}

.contact-left h2 {
  font-size: 40px;
  margin: 15px 0;
}

.contact-left p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info p {
  margin: 10px 0;
}

/* FORM */
.contact-right {
  width: 45%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-right h3 {
  margin-bottom: 20px;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

form textarea {
  height: 120px;
  resize: none;
}

form button {
  width: 100%;
  padding: 12px;
  background: #0b2a1d;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 10%;
  background: #0b2a1d;
  color: white;
}

.logo-small {
  font-weight: bold;
  margin-bottom: 5px;
}