* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Playfair Display';
  background-color: #fff;
  color: #8a9c6e;
}
.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%;
}


/*--------about-------- */
.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1300px;
  margin: 100px auto;
  padding: 65px 30px;
  gap: 40px;
  flex-wrap: wrap; /* Helps it be responsive */
}

.about-text {
  flex: 1;
  min-width: 300px;
  color: #000000;
  font-family: 'Playfair Display';
}

.about-text h1 {
  font-size: 2.3rem;
  color: #000000;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  transform: translateY(30px);
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.about-image img {
  margin-top: 70px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
}

.about-text blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin: 1.5rem 0;
}

/*--------portfolio-------- */

/* 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;
  }


}
