
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #181818;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #181818;
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #eae0f2;
  color: #181818;
}


header .navbar {
  background-color: #eae0f2;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .navbar .logo img {
  height: 50px;
}
header .navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
header .hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #eae0f2;
}
header .hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


#about, #team, #contact-location {
  padding: 3rem 2rem;
}
#team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
}
.team-member img {
  width: 100%;
  border-radius: 8px;
}

footer {
  background-color: #eae0f2;
  padding: 2rem;
  text-align: center;
}
footer .social i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
footer .legal {
  margin: 1rem 0;
}

#map-container iframe {
  width: 100%;
  height: 400px; 
}

.modal[hidden] { display: none !important; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
}

.modal__card{
  position:relative;
  width: min(520px, calc(100% - 32px));
  margin: 12vh auto 0;
  background: var(--panel, #fff);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  padding: 18px 18px 14px;
  animation: modalIn .14s ease-out;
}

.modal__title{
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.modal__text{
  margin: 0;
  opacity: .85;
  line-height: 1.4;
}

.modal__actions{
  display:flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

@keyframes modalIn{
  from { transform: translateY(10px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}