:root {
  --primary: #f2e7e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Unbounded", sans-serif;
}

body {
  background-color: #f2f2f2;
  overflow: hidden;
  height: 100vh;
  justify-content: center;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.navigation {
  width: 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation .navigation__router {
  display: flex;
  justify-content: center;
}

.navigation .navigation__locale {
  display: block;
  position: absolute;
  right: 0;
}

.dropdown__button {
  background-color: #fff;
  text-transform: uppercase;
  color: black;
  padding: 8px 16px;
  font-size: 16px;
  border: 0.3px solid #fdfdfd;
  cursor: pointer;
  border-radius: 4px;
}

.dropdown__button img {
  width: 20px;
  height: 20px;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.dropdown__content {
  font-size: 14px;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
  border-radius: 4px;
  z-index: 1;
}

.navigation__locale__item {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.navigation__locale__item:hover {
  background-color: #ddd;
}

.navigation__locale__item img {
  width: 1.2rem;
}

.logo-img {
  width: 200px;
  height: 67px;
}

.branch-section {
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.branch-section .branch-section_title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 4px;
}

.branch-section .branch-section_desc {
  font-size: 18px;
  text-align:center;
}

.branch-wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-auto-rows: minmax(250px, auto);
  gap: 1rem;
  margin: 3rem 0 1rem;
}

.branch-wrapper .branch-image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-item {
  max-width: 20rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.branch-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.branch-image_wrapper {
  height: 90%;
  width: 100%;
}

.branch-item_title {
  padding: 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
}


.map-wrapper {
	width: 100%;
	max-width: 500px; /* Max width constraint */
	margin-top: 2.5rem; /* Space from the top (mt-10 equivalent) */
	padding: 1rem;
	background-color: white;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* Simple shadow */
}

/* 3. Map Container: Sets the height and border */
.map-container {
	position: relative;
	width: 100%;
	height: 20rem; /* Fixed height (h-80 equivalent) */
	overflow: hidden;
	border-radius: 0.5rem;
	border: 2px solid rgba(99, 102, 241, 0.5);
}

/* 4. Iframe: Ensures it fills the container completely */
.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}



@media only screen and (max-width: 600px) {
  .navigation {
    width: 100%;
  }
}
