@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #212121;
  line-height: 1.6;
}

p {
  font-size: 1rem;
  color: #333;
}

/* NAVBAR */
.navbar-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.navbar-transparent {
  background-color: rgba(57, 61, 62, 0.4);
  backdrop-filter: blur(5px);
}

.logo {
  font-size: 26px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

.menu-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu-links li a {
  text-decoration: none;
  font-size: 15px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.menu-links li a:hover {
  color: #ddd;
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 20px 60px;
  background-color: #fafafa;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info, .contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  flex: 1 1 300px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #333;
}

.contact-info p {
  margin-bottom: 24px;
  font-weight: 400;
}

.info-block {
  margin-bottom: 20px;
}

.info-block h4 {
  margin-bottom: 6px;
  color: #0077cc;
  font-size: 1.1rem;
}

.social-links a {
  margin-right: 16px;
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #005fa3;
}

/* FORM STYLING */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 500;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077cc;
  outline: none;
}

.contact-form button {
  padding: 14px;
  background-color: #0077cc;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005fa3;
}

#form-status {
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 10px;
}

/* MAP */
.map-section {
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  background-color: #524b4b;
  color: #f8d5d5;
  padding: 30px 10px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  color: #ccc;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar-bg {
    padding: 0 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-links {
    gap: 16px;
    margin-top: 10px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    padding: 24px;
  }
}
