/** location **/
.location {
  hyphens: auto;
  padding: 2rem;
  word-break: break-word;
}

.location .img-dardo {
  transform: rotate(90deg) translate(80px, -70px);
  position: absolute;
  top: -215px;
}

.location h2 {
  color: transparent;
  font-size: 4.8rem;
  letter-spacing: 0.3em;
  margin-block: 1rem;
  position: relative;
  -webkit-text-stroke: .15rem white;
  word-break: break-word;
}

.location p {
  font-size: 1.2rem;
}

.location iframe {
  border: 2px solid var(--nerd-yellow);
  margin-inline-end: 1rem;
  max-width: 100%;
  mix-blend-mode: hard-light;
}

.col-info-transporte,
.col-info-accomodation {
  margin: 4rem auto;
  max-width: 800px;
  position: relative;
}

.col-info-transporte .img-blanco {
  position: absolute;
  top: -10px;
  left: -140px;
}

.transporte {
  display: flex;
  align-items: flex-start;
  color: var(--nerd-yellow);
  fill: var(--nerd-yellow);
}

.transporte .long {
  width: 100%;
}

.transporte svg {
  margin-block-start: 1rem;
  margin-inline-end: 1rem;
}

.transporte h3 {
  border-top: 1px solid var(--nerd-yellow);
  color: white;
  font-size: 1rem;
  margin: .5rem 0 0;
  padding-block-start: .5rem;
}

.transporte p {
  color: white;
  margin: 0;
}

.accomodation {
  align-items: flex-start;
  display: flex;
  margin-block: 2rem;
}

.accomodation h3 {
  margin: 0;
}

.accomodation svg {
  color: var(--nerd-yellow);
  margin-inline-end: 1rem;
}

.accomodation-info {
  border-left: 1px solid var(--nerd-yellow);
  padding-left: 1rem;
}

.accomodation-info p {
  margin: 0;
}

.accomodation-info a {
  color: var(--nerd-yellow)
}

@media screen and (max-width: 40em)
/* 640px */
  {
  .col-info-transporte .img-blanco {
    display: none;
  }

  .location h2 {
    font-size: 3rem;
    letter-spacing: 0.06em;
  }
}


/* Hotel accommodation section */
.hotel-info {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--nerd-yellow);
  border-radius: 8px;
  margin: 2rem 0;
  padding: 2rem;
}

.hotel-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hotel-header>img {
  max-width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hotel-name {
  color: white;
  font-size: 2rem;
  margin: 0;
}

.hotel-badge {
  background: var(--nerd-yellow);
  border-radius: 4px;
  color: black;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}

.special-rate {
  border-left: 3px solid var(--nerd-yellow);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.hotel-description {
  color: white;
  line-height: 1.6;
  margin: 1rem 0;
}

.booking-note {
  color: var(--nerd-yellow);
  font-size: 0.9rem;
  font-style: italic;
  margin: 1rem 0;
}

.hotel-gallery {
  margin: 2rem 0;
}

.gallery-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  aspect-ratio: 16/10;
  border: 1px solid var(--nerd-yellow);
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.booking-action {
  margin: 2rem 0;
  text-align: center;
}

.booking-btn {
  background: linear-gradient(135deg, var(--nerd-yellow) 0%, #ffa500 100%);
  border-radius: 4px;
  color: black;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media screen and (max-width: 40em) {
  .hotel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hotel-name {
    font-size: 1.5rem;
  }

  .hotel-info {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}