/* 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;
}



/* 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;
}
hr {
  border: none;
  height: 5px; /* This controls thickness */
  background-color: white; /* Light gray, or any color you want */
}

/* Contact Page */
.contact-section {
  padding: 4rem 2rem;
  background-color: #fffaf0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #f39c12;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-hero {
  width: 100%;
  background-color: #fffaf0;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.contact-hero img {
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}




/* Button Styling */
.btn {
  background-color: #f39c12;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #27ae60;
}


.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 Styling */
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;
}

footer p:last-child {
  margin-top: 0.2rem;
}

/* Responsive Navbar for Contact Page */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}
