/* styles.css — Bright professional travel theme */

:root{
  --bg:#f5f9ff;
  --surface:#ffffff;
  --surface2:#f1f6ff;
  --text:#0f172a;
  --muted:#475569;
  --border: rgba(15, 23, 42, 0.12);

  --accent:#1d9bf0;
  --accent2:#7dd3fc;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(29,155,240,0.16), transparent 60%),
    radial-gradient(900px 620px at 95% 5%, rgba(125,211,252,0.14), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Accessibility */
.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:static;
  width:auto; height:auto;
  padding:10px 12px;
  background: var(--accent);
  color:#ffffff;
  border-radius: 10px;
  display:inline-block;
  margin: 10px;
}

/* Header / Nav */
header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.site-logo{
  width:44px;
  height:44px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.navlinks{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navlinks a{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  font-weight: 600;
}

.navlinks a[aria-current="page"]{
  color: var(--text);
  border-color: rgba(29,155,240,0.35);
  background: rgba(29,155,240,0.10);
}

.navlinks a:hover{
  border-color: var(--border);
  background: rgba(15,23,42,0.04);
  text-decoration:none;
}

/* Hero */
.hero{
  padding: 46px 0 20px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.hero p{
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-media{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface2);
  margin-top: 10px;
}

.badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.03);
  color: var(--muted);
  font-size: 14px;
}

.cta-row{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font-weight: 750;
}

.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #ffffff;
}

.btn:hover{
  text-decoration:none;
  filter: brightness(0.98);
}

.hero-side{
  display:grid;
  gap: 12px;
}

.info{
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info h2{
  margin: 0 0 8px;
  font-size: 18px;
}

.info p{
  margin: 0;
  color: var(--muted);
}

/* Main / Cards */
main{ padding: 18px 0 52px; }

.section-title{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.section-title h2{ margin:0; font-size: 22px; }
.section-title p{ margin:0; color: var(--muted); font-size: 14px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3{ margin:0 0 8px; font-size: 18px; }
.card p{ margin:0; color: var(--muted); }

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Reusable card image (for attractions + destination) */
.card-img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:14px;
  border: 1px solid var(--border);
  background: var(--surface2);
  margin-bottom: 10px;
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.figure-card{
  overflow:hidden;
  padding: 0;
}

.figure-card img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display:block;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}

.figure-card .caption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

/* Form */
.form{ display:grid; gap: 12px; }
label{ font-weight: 750; }
input, select, textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.98);
  color: var(--text);
  outline: none;
}
textarea{ min-height: 110px; resize: vertical; }

.help{
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Footer */
footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255,255,255,0.70);
}

.devline{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .navlinks a{ padding: 8px 10px; }
}