/* GLOBAL FONT */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf5;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #8c4f30;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.0rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #2d3436;
  font-weight: 200;
  font-size: 1rem;
}

.navbar a.active {
  color: #8c4f30;
}

/* VIDEO WRAPPER */
.video-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom: -1rem;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
}

/* CTA BUTTON */
.cta-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #8c4f30cd;
  display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;
  white-space: pre-line; /* allows line breaks if needed, but centers text */
  width: max-content; /* or set a fixed width if you want */
  min-width: 200px;   /* optional: keeps button from being too narrow */
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  background-color: #a05a38;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* HERO TEXT */
.hero-text {
  background: rgba(10, 2, 2, 0);
  padding: 1rem 1cqi;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.hero-text h1 {
  font-size: rem;
  font-weight: 00;
  color: #8c4f30;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.rem;
  color: #444;
}

/* INTRO SECTION */
.intro {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-left: 5px solid #8c4f30;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.intro h2 {
  font-size: 1.5rem;
  color: #8c4f30;
  margin-bottom: 1rem;
}

/* FOOTER */
footer {
  background: #8c4f30
  ;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  margin-top: 2rem;

/* MOBILE HEADER FIXES */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .navbar .logo {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .navbar nav ul {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-left: 0;
    justify-content: flex-start;
  }

  .navbar nav a {
    font-size: 0.95rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .intro {
    padding: 2rem 1rem;
  }

}

/* HEADER TITLE FONT */
.header-title {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* GLOBAL STYLE */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffaf5;
  color: #333;
}

/* CONTACT CONTAINER */
.container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-left: 5px solid #8c4f30;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h2 {
  font-size: 1.5rem;
  color: #8c4f30;
  margin-bottom: 1rem;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #333;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #8c4f30;
}

a:hover {
  color: #a46748;
}

/* FOOTER */
footer {
  background: #8c4f30;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  margin-top: 2rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
  .container {
    margin: 1rem;
    padding: 1.5rem 1rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }
body {
  padding-top: 100px; /* Adjust to match your navbar height */
}
}  