body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #3B2F2F; /* deep brown */
  padding-top: 80px; /* offset for fixed navbar */
}

/* Navbar */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  z-index: 1000;
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #3B2F2F;
  text-decoration: none;
  font-weight: bold;
}

.btn {
  background: #C65D2C; /* terracotta */
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #3B2F2F;
}

/* Hero */
.hero {
  background: #FDF9F6;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #8B3A1A;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Contact Layout */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info a {
  color: #C65D2C;
  text-decoration: none;
}

.contact-info a:hover {
  color: #D4AF37; /* gold */
  text-decoration: underline;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #C65D2C; /* terracotta */
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: #D4AF37; /* gold */
  color: #3B2F2F;
}

/* Footer */
footer {
  background: #8B3A1A; /* deep brown */
  color: white;
  text-align: center;
  padding: 20px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #D4AF37;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #8B3A1A;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }
  

  .hamburger {
    display: block;
  }

  .contact-container {
    flex-direction: column;
  }
}
