/* GLOBALS */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Oswald',sans-serif; }

/* subtle text shadow everywhere for readability */
h1,h2,h3,h4,p,li,a,button { text-shadow: 0 2px 6px rgba(0,0,0,0.55); }

/* body */
body { background:#07122a; color:#fff; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

/* HERO with optional hero.jpg */
.hero {
  height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background: linear-gradient(180deg, rgba(3,18,36,0.6), rgba(3,18,36,0.6));
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay { position:absolute; inset:0; background: rgba(0,0,0,0.35); z-index:1; }
.hero-content { position:relative; z-index:2; text-align:center; padding:0 18px; max-width:1000px; }

/* hero text */
h1 { font-size:3.2rem; letter-spacing:0.6px; margin-bottom:6px; }
.strap { font-size:1.05rem; opacity:0.95; margin-bottom:8px; }

/* buttons */
.btn { background:#10c072; color:#fff; padding:11px 26px; border-radius:8px; text-decoration:none; display:inline-block; font-weight:700; transition:transform .15s, background .15s; }
.btn:hover { transform:translateY(-3px); background:#0aa05e; }
.btn.outline { background:transparent; border:2px solid rgba(255,255,255,0.12); color:#fff; }

/* price line + 2 links */
.price-line {
  margin-top:10px;
  opacity:0.95;
  font-size:1.05rem;
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.price-source { margin-left:6px; display:inline-flex; align-items:center; gap:8px; }
.sep { color: rgba(255,255,255,0.35); margin: 0 6px; }

/* Booking.com (orange) and Airbnb (coral) */
.price-link { color: #ff8a00; font-weight:700; text-decoration:none; }
.price-link:hover { color:#ffb24d; }
.airbnb-link { color: #FF5A5F; font-weight:700; text-decoration:none; }
.airbnb-link:hover { color:#ff8a8b; }

/* PATTERN WRAPPER */
.pattern-wrapper {
  background-color: #051122;
  position: relative;
  padding-bottom: 40px;
}
.pattern-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(0,232,214,0.06) 50%, transparent 50%),
    linear-gradient(180deg, rgba(0,232,214,0.06) 50%, transparent 50%);
  background-size: 40px 40px;
  opacity: 0.95;
  mix-blend-mode: overlay;
}
.pattern-wrapper > * { position: relative; z-index: 1; }

/* INFO section */
.info-section { max-width:980px; margin: 28px auto; padding: 18px; }
.info-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* About header */
.about-header {
  font-size: 2rem;
  color: #00e8d6;
  margin-bottom: 14px;
  font-weight:700;
}

/* description */
.description {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #e9f9f6;
  margin-bottom: 16px;
}

/* info list */
.info-list { list-style:none; font-family:'Roboto',sans-serif; font-weight:300; color:#e8fbf8; font-size:0.95rem; }
.info-list li { margin:6px 0; }

/* FEATURES */
.features { padding: 36px 18px; text-align:center; }
.feature-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
  margin-top:18px;
}

/* UPDATED FEATURE BOXES — rounded squares */
.feature-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 8px;        /* more square */
  padding: 22px;
  min-height: 150px;          /* helps shape stay square-ish */
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  transition: transform .18s, box-shadow .18s;
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
.feature-box h3 {
  margin-bottom: 10px;
}
.feature-box p {
  font-family:'Roboto';
  font-weight:300;
  color:#f1fdfb;
}

/* GALLERY */
.gallery-controls { margin-top:24px; text-align:center; }
.gallery {
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  transition:0.25s;
}
.gallery img {
  width:260px;
  height:170px;
  object-fit:cover;
  border-radius:10px;
  opacity:0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
  cursor:pointer;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}
.gallery img.loaded { opacity:1; transform: translateY(0); }
.gallery.hide { max-height:0; opacity:0; overflow:hidden; }

/* FOOTER */
.footer {
  margin-top:48px;
  padding:34px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color:#cffdfa;
  font-family:'Roboto',sans-serif;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.45);
}
.footer-inner {
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.footer-column { min-width: 200px; }
.footer-column h4 {
  font-family:'Oswald',sans-serif;
  color:#00e8d6;
  margin-bottom:8px;
  font-weight:700;
}
.footer-column p {
  margin:6px 0;
  font-weight:300;
  color:#e7fdfb;
  font-size:0.95rem;
}
.footer-column a { color:#9ffbf1; text-decoration:none; }

.footer-bottom {
  text-align:center;
  opacity:0.75;
  margin-top:12px;
  font-weight:300;
}

/* responsive tweaks */
@media (max-width:880px) {
  .footer-inner { justify-content:center; text-align:center; }
  .footer-column { width:100%; max-width:420px; }
  .about-header, .info-card { text-align:center; }
}
