@import url('fonts.css');
:root {
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --bg-dark: #07070a;
  --bg-card: #111118;
  --text-main: #f8fafc;
  --text-sub: #94a3b8;
  --primary-color: #e2e8f0;
  --accent-color: #f43f5e;
  --border-color: rgba(255, 255, 255, 0.12);
  --placeholder-bg: rgba(244, 63, 94, 0.08);
  --placeholder-border: rgba(244, 63, 94, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* Wireframe Visual Placeholder */
.wireframe-image-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  background: var(--placeholder-bg); border: 2px dashed var(--placeholder-border);
  border-radius: var(--radius-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--accent-color);
  gap: 0.5rem; font-weight: 700; font-size: 0.85rem; padding: 1rem;
}
.wireframe-image-placeholder i { font-size: 2.5rem; opacity: 0.9; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; border-radius: 30px; font-weight: 800;
  font-size: 0.85rem; cursor: pointer; border: none; transition: all 0.25s ease;
}
.btn-primary { background: linear-gradient(135deg, #fff, var(--primary-color)); color: #000; }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-color); color: #fff; }
.btn-outline { border: 1px solid var(--border-color); color: var(--text-main); background: rgba(255, 255, 255, 0.04); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 0.95rem; }
.btn-block { width: 100%; border-radius: var(--radius-sm); }

/* Header */
.header { background: rgba(17, 17, 24, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; padding: 1.1rem 0; }
.header-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.05em; }
.logo small { display: block; font-size: 0.65rem; color: var(--accent-color); font-weight: 700; }
.logo-icon { width: 36px; height: 36px; background: var(--accent-color); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; }
.nav { display: flex; gap: 2rem; }
.nav-link { font-size: 0.85rem; font-weight: 700; color: var(--text-sub); }
.nav-link:hover { color: var(--accent-color); }

/* Hero */
.hero-section { padding: 5.5rem 0; }
.hero-container { max-width: 800px; margin: 0 auto; }
.pill-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(244, 63, 94, 0.15); color: var(--accent-color); border: 1px solid rgba(244, 63, 94, 0.3); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 800; margin-bottom: 1.25rem; }
.headline { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.subtitle { color: var(--text-sub); font-size: 1.1rem; margin-bottom: 2.5rem; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; }

/* Gallery */
.gallery-section { padding: 4.5rem 0; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.filter-bar { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); color: var(--text-sub); font-size: 0.8rem; font-weight: 800; padding: 0.5rem 1.2rem; border-radius: 20px; cursor: pointer; transition: all 0.2s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--accent-color); color: #fff; border-color: var(--accent-color); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 260px; }
.item-placeholder { height: 100%; border-radius: 0; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(7, 7, 10, 0.85); backdrop-filter: blur(4px); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.1rem; font-weight: 700; }
.gallery-overlay span { font-size: 0.8rem; color: var(--accent-color); }

/* Booking */
.booking-section { padding: 4.5rem 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.booking-desc { color: var(--text-sub); margin-bottom: 2rem; }
.booking-form-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 2rem; }
.photo-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.35rem; }
.form-input { width: 100%; padding: 0.85rem 1rem; background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-main); font-family: inherit; font-size: 0.9rem; }
.form-feedback { margin-top: 1rem; color: #4ade80; font-size: 0.85rem; font-weight: 700; }
.form-feedback.hidden { display: none; }

/* Footer */
.footer { background: #030305; border-top: 1px solid var(--border-color); padding: 2rem 0; color: var(--text-sub); font-size: 0.85rem; }

@media (max-width: 900px) {
  .gallery-grid, .booking-grid { grid-template-columns: 1fr; }
  .headline { font-size: 2.2rem; }
  .nav { display: none; }
}

/* Global Mobile Viewport Overflow Protection */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video, iframe, canvas {
  max-width: 100%;
  height: auto;
}
