/* Variables */
:root {
  --site-blue: #1f3a5f;
  --site-light-gray: #f4f4f4;
}

/* Header */
.site-header {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--site-blue);
  color: white;
}

.site-title {
  margin: 0;
}
/*
.site-description {
  max-width: 50%;
  margin: 20px auto 0 auto;
}
*/
.site-description {
  max-width: 750px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
}

/* Footer */
/*
.site-footer {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--site-blue);
  color: white;
}
*/

.site-footer {
  background-color: var(--site-blue); /* keep your current tone */
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 120px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-title {
  margin: 0 0 10px 0;
}

.footer-tagline {
  margin: 10px 0 20px 0;
}

.footer-contact {
  margin-top: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.8;
}


/* Menu */
.main-nav {
  
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  background-color: var(--site-blue);
}
.menu {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: 40px;
}

.menu-item a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.menu-item a:hover {
  text-decoration: underline;
}
/* Two column layout*/
.contact-columns {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 30px;
  align-items: flex-start;
}

.contact-column {
  max-width: 350px;
}

.contact-column:first-child {
  flex: 1.4;
}

.contact-column:last-child {
  flex: 1;
}

/* Body */
body {
  margin: 0;
  background-color: var(--site-light-gray);
  font-family: system-ui, sans-serif;
  line-height: 2.0;
  font-size: 112.5%; /* 16px → 18px */
}

main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Images on the home page */
.intro-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.intro-text {
  flex: 3;
  max-width: 700px;
}

.intro-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}
.intro-images img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

/* Responsive behaviour */
@media (max-width: 900px) {
  .intro-section {
    flex-direction: column;
  }

/* Details */
details > *:last-child {
  margin-bottom: 0;
}

/* Font Size*/
h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

/* Maps */

.map-embed {
  width: 100%;
  height: 600px;
  border: 0;
  margin: 20px 0;
}

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 420px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 6px;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: var(--site-blue);
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  opacity: 0.9;
}

.hidden-field {
  display: none !important;
}

.contact-form .hidden-field {
  display: none !important;
}


