/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fffaf0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.logo {
  height: 60px;
  border-radius: 10px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links .active {
  color: #f39c12;
}

/* Register Section */
.register-section {
  padding: 4rem 1rem;
  background-color: #fff;
}
.container {
  max-width: 700px;
  margin: 0 auto;
}
.container h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.container p {
  text-align: center;
  margin-bottom: 1rem;
}
.divider {
  width: 60px;
  height: 2px;
  background-color: #f39c12;
  margin: 1rem auto 2rem auto;
  border: none;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.register-form label {
  font-weight: 600;
}
.register-form input,
.register-form select,
.register-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.register-form textarea {
  resize: vertical;
}

/* Button */
.btn {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn:active {
  background-color: #27ae60; /* Green on click */
}
.map-container {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px; /* adjust height as desired */
  border: 0;
}


/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
footer a {
  color: #f9d342;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .register-form {
    padding: 0 1rem;
  }
}
