body {
    margin: 0;
    font-family: 'Ubuntu Mono', monospace;
    background-color: #0d1117;
    color: #c9d1d9;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

.logo a {
  display: flex;
  align-items: center;
}
.logo img {
  height: 32px;
}

header {
    width: 100%;
    background-color: #161b22;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
/* Jorges code start */
.header-main-sm {
  width: fit-content;
  height: 100%;
  padding-right: 60px;
  display: flex;
  align-items: center;
}

.header-main-sm-ig {
  width: 37px;
  height: 37px;
  background-image: url(images/instagram.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-main-sm-ig:hover {
  background-image: url(images/instagram-rainbow.png);
}
 /* Jorges code end */
header .container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 90%; 
    max-width: 1200px;
    padding: 15px;
    margin: 0 auto;
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 24px;
    color: #58a6ff;
}

header nav {
    margin-left: auto; 
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 12px;
}

nav ul li a {
    color: #c9d1d9;
    text-decoration: none;
    font-size: 17px;
    padding: 10px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
    font-weight: 550;
    font-family: 'Ubuntu Mono', monospace;
    align-items: center;
  
}

nav ul li a:hover {
  border: 0px solid #58a6ff;
  background-color: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
}

.page-title {
  font-size: 30px;
  margin-bottom: 20px;
  color: #58a6ff;
  padding: 50px 0;
  text-align: center;
  
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 60px;
    margin: 0 auto;
    max-width: 900px;
    
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #58a6ff;
  padding-left: 20px;
  padding-right: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 30px 20px;
    line-height: 1.5;
}
.hero-buttons {
  margin-top: 30px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.carousel-buttons {
  padding-bottom: 20px;
  margin-left: 250px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
    background-color: #58a6ff;
    color: #0d1117;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 20px;
    border-width: 0px;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 18px;
    font-weight: bold;
}
form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: auto;
    background: #161b22;
    padding: 20px;
    border-radius: 20px;
    box-sizing: border-box;
    
}

label {
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 0px solid #58a6ff;
    border-radius: 10px;
    background: #0d1117;
    color: #c9d1d9;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Ubuntu Mono', monospace;
}

button {
    margin-top: 15px;
}

.team h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #58a6ff;
}

.team a {
  text-decoration: none;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  padding: 50px 20px;
  text-align: center;
  max-width: 800px; 
  margin: 0 auto; 
  width: 90%;
}

.team-member {
  background-color: #161b22;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 0px rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  min-width: 250px; 
 


}
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.team-member h3 {
  color: #58a6ff;
  margin-bottom: 5px;
}
.team-member p {
  color: #c9d1d9;
  line-height: 1.5;
}

.terms-container {
    max-width: 800px;
    margin: 80px auto;
    padding-bottom: 100px; 
    padding-top: 100px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


.terms {
    max-width: 800px;
    margin: 80px auto;
    padding-bottom: 100px; 
    padding-top: 100px;
}

    .services-section {
      padding: 100px 20px;
      padding-bottom: 20px;;
      max-width: 1000px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 52px;
    }

    .service-card {
      background-color: #161b22;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 0 0px rgba(255, 255, 255, 0.05);
    }

    .service-card h2 {
      color: #58a6ff;
      margin-bottom: 20px;
    }

    .status {
      padding: 20px 20px 50px;
      font-size: 1.2rem;
      text-align: center;
    }

    .view-btn {
      background-color: #58a6ff;
    color: #0d1117;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    border-width: 0px;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    }

    .map-wrapper {
      width: 100%;
      max-width: 1000px;
      margin: 20px auto;
      margin-bottom: 100px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 0px rgba(255, 255, 255, 0.05);
      background-color: #1f2937;
    }

    .map-placeholder {
      height: 400px;
      width: 100%;
      padding : 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #58a6ff;
      background: repeating-linear-gradient(45deg, #0d1117, #0d1117 10px, #1a1f2b 10px, #1a1f2b 20px);
    }

    #map {
      height: 400px;
      width: 100%;
      display: none;
    }

    

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}
.blur-overlay.show {
  display: block;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1101;
  margin-inline-start: auto;
  position: fixed;
  right: 30px;
  left: 100px;
  top: 45px;
  padding-left: 75px;
} 
.hamburger span {
  background: #c9d1d9;
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  background-color: rgba(22, 27, 34, 0.95);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 104px;
  right: 0;
  height: 100vh;
  width: 250px;
  padding: 80px 20px 20px;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
  border-radius: 30px 30px;
  z-index: 1001;
  border-left: #2c2f36 1px solid;
}
.mobile-nav.show {
  display: flex;
  transform: translateX(0);
}
.mobile-nav a {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  text-decoration: none;
  color: #c9d1d9;
  font-weight: bold;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
@media (max-width: 875px) {
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

footer a {
  color: #58a6ff;
  text-decoration: none;
}

footer {
    background-color: #161b22;
    padding: 5px 0;
    margin-top: 50px;
    width: 100%;
}
