﻿:root {
  --sand: #f7f3ec;
  --cloud: #fffaf2;
  --ink: #1c1b1a;
  --muted: #5f5b57;
  --gold: #d4a13d;
  --sun: #f2c25d;
  --teal: #1f6f8b;
  --teal-dark: #0f3d4c;
  --mist: rgba(31, 111, 139, 0.12);
  --shadow: 0 22px 50px rgba(15, 61, 76, 0.14);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Tajawal", "Changa", sans-serif;
  background: radial-gradient(circle at top right, rgba(212, 161, 61, 0.18), transparent 55%),
    radial-gradient(circle at 10% 20%, rgba(31, 111, 139, 0.14), transparent 60%),
    var(--sand);
  color: var(--ink);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 61, 76, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}

.brand-title {
  font-family: "Changa", "Tajawal", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(212, 161, 61, 0.18);
  color: var(--teal-dark);
}

.site-nav a.is-active {
  background: var(--teal-dark);
  color: white;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 61, 76, 0.2);
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 90px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(31, 111, 139, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
}

.hero h1 {
  font-family: "Changa", "Tajawal", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 16px 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--teal-dark);
  color: white;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: white;
  color: var(--teal-dark);
  border: 1px solid rgba(15, 61, 76, 0.2);
}

.hero-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.highlight {
  padding: 14px 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(15, 61, 76, 0.08);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--teal-dark);
}

section {
  padding: 70px 0;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.section-title span {
  color: var(--teal-dark);
  font-weight: 600;
}

.section-title h2 {
  margin: 0;
  font-family: "Changa", "Tajawal", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(15, 61, 76, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 161, 61, 0.16);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  width: fit-content;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card span {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 61, 76, 0.82);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.info-strip {
  background: linear-gradient(120deg, rgba(15, 61, 76, 0.08), rgba(212, 161, 61, 0.16));
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 14px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 22px rgba(15, 61, 76, 0.06);
}

.info-list strong {
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: start;
}

.sub-hero {
  padding: 70px 0 40px;
}

.sub-hero .hero-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 16px 18px;
  border-right: 4px solid var(--sun);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(15, 61, 76, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.gallery-grid figure {
  margin: 0;
  background: white;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(15, 61, 76, 0.08);
}

.gallery-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 76, 0.18);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: var(--teal-dark);
  color: white;
  padding: 40px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.stagger > * {
  animation: fadeUp 0.7s ease both;
}

.stagger > *:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.15s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.25s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.35s;
}

.stagger > *:nth-child(5) {
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 4vw;
    right: 4vw;
    background: white;
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-header[data-open="true"] .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    gap: 12px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stagger > * {
    animation: none;
  }
}
