/* General Styles */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: #4a3b2f;
  background: #f7f2e9;
}

/* Nav */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 14px;
  max-width: 1000px;
  margin: 20px auto;
  position: sticky;
  top: 20px;
  z-index: 1000;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4a3f35;
}

/* Links */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #4a3f35;
  font-weight: 500;
  transition: color 0.2s;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-links a:hover {
  color: #2d6a4f;
}

/* Button in navbar */
.nav-links .btn {
  background: #2d6a4f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* Buttons */
.btn {
  background: #2f6f3e;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #245732;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 75vh;
  background: linear-gradient(to bottom, #f7f2e9, #f0e4d7);
  color: #4a3b2f;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("fashion-shoes-sneakers.jpg") center/60% no-repeat;
  opacity: 0.08;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.3em;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Sections */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #4a3b2f;
}
.light-bg {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Two-column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.two-col .image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}
.two-col .text {
  text-align: left;
}

/* Us */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.card {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}
form button {
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #4a3b2f;
  color: #fff;
  margin-top: 50px;
}

/* Photos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* For Mobile */
@media (max-width: 700px) {
  .hamburger { display: flex; }

  /* start hidden */
  .nav-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: absolute;
    right: 20px; /* so it aligns with the hamburger */
    top: 65px;   /* just below navbar */
    width: 200px; /* not full width */
    text-align: left;
    padding: 0;
  }

  /* when toggled */
  .nav-links.show {
    max-height: 500px; /* enough for links */
    opacity: 1;
  }

  .nav-links a {
    padding: 12px 18px;
    display: block;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* button inside dropdown */
  .nav-links .btn {
    margin: 10px;
    text-align: center;
  }
}
