/* ===========================
   Global Styles & Variables
=========================== */
:root {
  --bg: #0b0f14;
  --elev: #111827;
  --muted: #9aa4b2;
  --text: #e5e7eb;
  --heading: #f9fafb;
  --brand: #2f6768;   /* Teal */
  --accent: #d4af37;  /* Gold */
  --radius: 18px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.6;
}

/* ===========================
   Links & Containers
=========================== */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 20px;
}

/* ===========================
   Header / Nav
=========================== */
header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid #121826;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: var(--accent);
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
}

nav a {
  font-weight: 700;
  color: var(--accent);
}

nav a:hover,
nav a.active {
  color: var(--brand);
}

/* ===========================
   Hero Section
=========================== */
.hero {
  padding: 100px 0 60px;
  position: relative;
  background: url("hero-bg.jpg") center/cover no-repeat;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  max-width: 900px;
}

.hero p {
  font-size: 1.15rem;
  color: #eee;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.dragons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 1rem;
}

.dragon {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.dragon-left {
  transform: scaleX(-1);
}

/* ===========================
   Sections
=========================== */
section {
  padding: 70px 0;
  border-top: 1px solid #121826;
}

.page-hero {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(47, 103, 104, 0.15), rgba(0, 0, 0, 0.7)), url("hero-bg.jpg") center/cover no-repeat;
}

.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--brand);
  font-weight: 500;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.section-title p {
  color: var(--muted);
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: calc(var(--radius) - 6px);
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent);
  color: #000;
}

.btn.ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn.ghost:hover {
  background: var(--brand);
  color: #fff;
}

/* ===========================
   Cards & Grids
=========================== */
.features,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: var(--elev);
  border: 1px solid #1c2434;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.card h3,
.card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 0;
}

.card p {
  color: #ccc;
  margin-bottom: 1rem;
}

/* ===========================
   About Page
=========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: start;
}

.two-col p {
  color: #ddd;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  margin: 1rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: #ccc;
}

.checklist li::before {
  content: "✔";
  color: var(--brand);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.director {
  text-align: center;
}

.director-copy {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: #ddd;
}

.director-copy em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ===========================
   Contact Page
=========================== */
.contact-intro {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--elev);
  border: 1px solid #1c2434;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem;
  margin: 0.6rem 0;
  border: 1px solid var(--brand);
  border-radius: 10px;
  background: #0e1622;
  color: var(--text);
  font: inherit;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  margin-top: 1rem;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

form button:hover {
  background: var(--accent);
  color: #000;
}

.direct-email {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.direct-email a {
  color: var(--brand);
  font-weight: 700;
}

/* ===========================
   Footer
=========================== */
footer {
  padding: 40px 0;
  border-top: 1px solid #121826;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

/* ===========================
   Responsive Dragons
=========================== */
@media (max-width: 1024px) {
  .dragon {
    width: 100px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .dragons {
    gap: 15px;
  }
  .dragon {
    width: 80px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .dragons {
    flex-direction: column;
    gap: 5px;
  }
  .dragon {
    width: 70px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}
