/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --bg-light: beige;
  --bg-header-footer: bisque;
  --highlight: #fde69b;
  --text-color: #333;
  --btn-bg: #444;
  --btn-hover: #666;
}

/* BODY */
body {
  font-family: 'Roboto', sans-serif; /* Google Font */
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
}

/* HEADER */
.header {
  background-color: var(--bg-header-footer);
  padding: 1rem 2rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-left a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9rem;
}

.nav-logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-right {
  font-size: 1.2rem;
}

.btn {
  background: var(--btn-bg);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--btn-hover);
}

/* HERO */
.hero {
  background: #ffffff;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  gap: 2rem;
  padding: 3rem 2rem;
  align-items: stretch;
}

.contact-form-container,
.map-sidebar {
  flex: 1; /* each takes 50% */
  display: flex;
  flex-direction: column;
}

.contact-form-container h2 {
  margin-bottom: 1rem;
}

.contact-form-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form-container textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-container button {
  background: var(--btn-bg);
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-container button:hover {
  background: var(--btn-hover);
}

/* Map Sidebar */
.map-sidebar iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

/* FOUNDERS SECTION */
.founders-section {
  padding: 2rem;
  text-align: center;
}

/* FOOTER */
.footer {
  background-color: var(--bg-header-footer);
  padding: 2rem;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a,
.footer-bottom a {
  text-decoration: none;
  color: var(--text-color);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #999;
}

.legal-links {
  display: flex;
  gap: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-form-container,
  .map-sidebar {
    flex: 1 1 100%;
    height: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-social {
    justify-content: center;
  }
}

