/* css/styles.css */

/* ===========================
   THEME VARIABLES
=========================== */
:root {
  --bg: #020617;
  --bg-alt: #020818;
  --card: #020c1b;
  --muted: #94a3b8;
  --accent: #eab308;       /* gold */
  --accent-soft: #facc15;
  --border-subtle: rgba(148, 163, 184, 0.18);
  --glass: rgba(15, 23, 42, 0.85);
  --radius: 14px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.7);
  --max-width: 1200px;
  --gap: 1.25rem;
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ===========================
   GLOBAL
=========================== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #000 100%);
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout wrapper */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* ===========================
   HEADER / NAV
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.94),
    rgba(15, 23, 42, 0.86)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(
    135deg,
    var(--accent-soft),
    var(--accent),
    #fb923c
  );
  color: #020617;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.nav a:hover {
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  margin-top: 2.25rem;
  align-items: center;
}

.hero-card {
  background: radial-gradient(circle at top left, #0f172a 0, #020617 60%);
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.75rem 1.5rem;
}

.h-title {
  margin: 0 0 0.5rem;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
}

.h-sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* hero image card */
.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.8)
  );
  color: var(--muted);
  font-size: 0.88rem;
}

/* ===========================
   BUTTONS & LABEL BLOCKS
=========================== */
.btn {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  color: #02101e;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(234, 179, 8, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(234, 179, 8, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.6);
}

.list {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(30, 64, 175, 0.45);
}

/* small key-value rows (quick links) */
.kv {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
}

/* ===========================
   ATTRACTIONS GRID
=========================== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.85);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.card-title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.card-sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===========================
   GALLERY GRID
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.8);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  margin-top: 2.75rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 80%);
  border: 1px solid var(--border-subtle);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ===========================
   CONTACT / FORM
=========================== */
.form-card {
  margin-top: 1.75rem;
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  background: radial-gradient(circle at top, #020617, #020617 60%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.form-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.92rem;
  resize: vertical;
  min-height: 44px;
}

.form-card textarea {
  min-height: 120px;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: 2px solid rgba(234, 179, 8, 0.35);
  border-color: rgba(234, 179, 8, 0.65);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 0.85rem;
  }

  .nav {
    display: none; /* simple mobile nav (you can replace with burger later) */
  }

  .hero {
    margin-top: 1.75rem;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .container {
    padding-inline: 1.1rem;
  }
}
