/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY & FONTS */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffdf7;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background-color: #f9d24d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo {
  height: 60px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  margin-left: 25px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav a:hover {
  color: #2d6a4f;
  border-bottom: 2px solid #2d6a4f;
}

/* MAIN CONTENT */
main {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

main h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 20px;
}

main h3 {
  margin-top: 40px;
  color: #444;
  text-align: center;
}

/* FORM STYLING */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: 600;
  color: #444;
}

input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #2d6a4f;
  outline: none;
  box-shadow: 0 0 5px rgba(45, 106, 79, 0.2);
}

/* BUTTON STYLING */
button {
  background-color: #2d6a4f;
  color: white;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

button:hover {
  background-color: #1b4332;
  transform: translateY(-2px);
}

/* OPENING HOURS LIST */
ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  text-align: center;
}

ul li {
  margin: 5px 0;
  padding: 8px;
  background-color: #f9f871;
  border-radius: 6px;
  color: #333;
  font-weight: 500;
}

/* FOOTER */
footer {
  background-color: #f1c40f;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px 0;
  }

  main {
    padding: 20px;
  }
}
