* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Playfair Display';
  background-color: #fff;
  color: #000000;
}

.footer-image {
  width: 100%;
  height: 130px;
  background-image: url('footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
}

.footer-text {
  color: white;        /* or any color that contrasts with the image */
  font-size: 16px;
  font-weight: normal;
  text-shadow: 1px 1px 2px black; /* helps make it readable */
  margin: 0;
}



/* NAVBAR */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 2rem;
  background-color: #000000;
  border-bottom: 2px solid #090909;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  font-family: 'Playfair Display';
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-logo img {
  height: 62px;  /* Try 24px, 32px, 40px – whatever looks right */
  width: auto;   /* Keeps proportions correct */
  object-fit: contain;  /* Ensures it doesn't stretch */
}

.nav-center {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: space-between; /* Or: space-around / space-evenly */
  padding: 1rem;
  margin-right: 40px;

}

.nav-center li a{
  position: relative;
  font-size: 17px; 
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-center li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s ease;
}

.nav-center li a:hover::after {
  width: 100%;
}

.contact-center {
  padding: 180px 20px 200px;
  text-align: center;
  background-color: white;
  font-family: 'Playfair Display';
  color: #1a1a1a;
}

.contact-center h1 {
  font-size: 5rem;
  font-weight: lighter;
  letter-spacing: 3.5px;
  margin-bottom: 20px;
  border-bottom: 2px solid #1a1a1a;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-center p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-icons a {
  font-size: 2.2rem;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icons a:hover {
  transform: scale(1.2);
  color: #3b482a; /* Soft green on hover */
}

/* Hide hamburger by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav-center {
    display: none; /* Hide menu on mobile by default */
    flex-direction: column;
    position: absolute;
    top: 70px;  /* below navbar */
    right: 20px;
    background: black;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-center.show {
    display: flex; /* Show when toggled */
  }

  .menu-toggle {
    display: block; /* Show hamburger */
  }

    .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    width: 100%;
    height: auto;
    padding: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1rem;
  }


}