body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: #2e1d12;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d1208;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 40px;
  border-radius: 50px;
  border: 1px solid rgb(148, 105, 32);
}

.contact-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.contact-overlay {
  background-color: rgba(88, 58, 32, 0.6);
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-overlay h1 {
  font-family: 'Catchy Mager', serif;
  font-size: 36px;
  color: #fff;
}

.nav-links a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e1c089;
}

.contact-section {
  text-align: center;
  padding: 60px 10%;
  background: rgba(0, 0, 0, 0.2);
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-box {
  flex: 1;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #e1c089;
}

.social-icons img {
  width: 30px;
  margin: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

a{
  text-decoration: none;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #1d1208;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 0;
  }

  .nav-links a {
    margin-left: 0;
  }
  .contact-columns {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #1d1208;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 0;
  }

  .nav-links a {
    margin-left: 0;
  }

  .contact-overlay h1 {
    font-size: 22px;
  }

  .logo img {
    height: 35px;
  }

  .contact-section {
    width: 100%;
    padding: 0;
  }

  .contact-box {
    width: 10%;
    margin-top: 10px;
    padding: 0;
  }
}

@media (max-width: 320px) {
  .contact-overlay h1 {
    font-size: 18px;
  }

  .nav-links a {
    font-size: 12px;
    margin-left: 8px;
  }

  .navbar {
    padding: 10px;
  }

  .logo img {
    height: 30px;
  }
}
