/* === BASE === */
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  color: #222;
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.sidebar:hover ~ * {
  margin-left: 240px;
}

/* === HEADER === */
header {
  text-align: center;
  padding: 40px 20px 0;
}

.curve-image {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.logo-wrapper {
  margin-top: 30px;
}

.logo-wrapper img {
  width: 260px;
}

/* === INTRO BOX === */
.intro-box {
  background-color: #006d77; /* or another dark background */
  border-left: 6px solid #bbcf32;
  margin: 30px auto;
  max-width: 800px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.intro-box p {
  font-size: 19px;
  color: #ffffff; /* ✅ this sets the paragraph text to white */
  line-height: 1.7;
}


/* === NAVIGATION === */
nav {
  text-align: center;
  margin-top: 30px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #006d77;
  font-weight: 600;
  transition: border-bottom 0.2s ease;
}

nav a:hover {
  border-bottom: 2px solid #bbcf32;
}

/* === GRID BUTTONS === */
.buttons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.button-box {
  width: 200px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  border-top: 4px solid #bbcf32;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  text-decoration: none;
  color: #006d77;
}

.button-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background-color: #bbcf32;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-circle img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.button-box span {
  display: block;
  font-weight: 600;
  color: #006d77;
  font-size: 15px;
}

.button-box:hover span {
  color: #dd8545;
}

.button-box:focus {
  outline: 3px solid #bbcf32;
  outline-offset: 4px;
}

/* === MAP SECTION === */
.map-callout {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #f1faf8 0%, #ffffff 100%);
  padding: 70px 20px;
  margin: 70px 0 80px;
  border-top: 1px solid #e0eceb;
  border-bottom: 1px solid #e0eceb;
}

.map-callout__content {
  max-width: 880px;
  text-align: center;
}

.map-callout__content h2 {
  font-size: 32px;
  color: #0f2743;
  margin-bottom: 16px;
}

.map-callout__content p {
  font-size: 18px;
  color: #264660;
  margin: 0 auto 26px;
  max-width: 720px;
  line-height: 1.65;
}

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: #006d77;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.map-button:hover {
  background: #004f57;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.map-callout__credit {
  margin-top: 18px;
  font-size: 14px;
  color: #3b5c70;
}

/* === SIDE BUTTONS === */
.side-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.side-buttons a {
  text-decoration: none;
  color: #006d77;
  border: 2px solid #006d77;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
}

/* === FOOTER === */
.contact-footer {
  background-color: #f7f7f7;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.contact-footer h2 {
  font-size: 24px;
  color: #006d77;
  margin-bottom: 10px;
}

.contact-footer p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #006d77;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #004f57;
}

/* === RESPONSIVE === */
@media (max-width: 850px) {
  .button-box {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .button-box {
    width: 100%;
  }
}

/* === SIDEBAR === */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 100vh;
  background-color: #1c1c1c;
  overflow-x: hidden;
  overflow-y: auto;
  transition: width 0.3s ease;
  z-index: 1000;
}

.sidebar:hover {
  width: 220px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 100vh;
  background-color: #1c1c1c;
  z-index: 1000;
  transition: width 0.3s ease;
  overflow-x: hidden;
  overflow-y: auto;
}


.sidebar:hover::before {
  opacity: 0;
}

.sidebar ul {
  list-style: none;
  padding: 60px 0 0 10px;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar:hover ul {
  opacity: 1;
}

.sidebar ul li {
  margin-bottom: 14px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #f2f2f2;
  font-size: 16px;
  display: block;
  transition: color 0.2s;
  white-space: nowrap;
  font-weight: normal;
  text-align: left;
  padding-left: 10px;
}

.sidebar ul li a:hover {
  color: #bbcf32;
}

.main-content-wrapper {
  transition: margin-left 0.3s ease;
}

/* Shift logo + icons together when sidebar expands */
.sidebar:hover ~ .main-content-wrapper {
  margin-left: 220px;
}
