
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Open+Sans:wght@400&display=swap');

body {
  margin: 0;
  background: #002742;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.project-wrapper {
  display: flex;
  width: 100%;
}

.project-left {
  width: 40%;
  padding: 50px;
  overflow-y: auto;
}

.project-right {
  width: 60%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.back-arrow {
  font-size: 30px;
  color: white;
  text-decoration: none;
}

.info-block h1 {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  margin-top: 20px;
}

.subtitle {
  font-size: 20px;
  margin-top: 10px;
}

.location, .meta {
  font-size: 14px;
  margin-top: 10px;
}

.project-links {
  list-style: none;
  margin-top: 30px;
  padding: 0;
}

.project-links li {
  margin-bottom: 10px;
}

.project-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.project-description {
  font-size: 16px;
  margin-top: 30px;
  line-height: 1.6;
}

.distances {
  margin-top: 30px;
  font-size: 14px;
}

.distances div {
  margin-bottom: 10px;
}

.project-right .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 30px;
  font-family: 'Cinzel', serif;
  background: rgba(0,0,0,0.5);
  padding: 10px;
}

#map {
  width: 100%;
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
}


/* Responsive mobile adjustments for project pages */
@media screen and (max-width: 768px) {
  
  .project-wrapper {
    flex-direction: column !important;
    overflow-y: auto !important;
  }

  .project-left, .project-right {
    width: 100% !important;
    padding: 20px !important;
    height: auto !important;
  }

  .project-right .logo {
    top: 15px !important;
    left: 15px !important;
    font-size: 24px !important;
  }

  #map {
    position: static !important;
    height: 250px !important;
    margin-top: 15px !important;
  }
}
