:root {
  --celtic-gold: #BA9653;
  --forest-dark: #0c1912;
  --forest-soft: #142d1c;
  --text-muted: #a8a28f;
}

/* 🧩 Layout Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--forest-dark);
  color: var(--text-muted);
  font-family: 'Merriweather', serif;
  text-align: center;
}

/* 🎥 HERO SECTION */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  background-color: var(--forest-dark);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(12, 25, 18, 0.65);
  padding: 2.5rem 1rem;
}

/* 🧭 NAVIGATION */
.nav-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.nav-icon {
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--celtic-gold);
  margin: 4px 0;
  border-radius: 2px;
}

.nav-icon:hover .bar {
  background-color: #a8843d;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 2.8rem;
  right: 1rem;
  min-width: 160px;
  background-color: rgba(12, 25, 18, 0.95);
  border: 1px solid var(--celtic-gold);
  border-radius: 8px;
  padding: 0.5rem;
  animation: fadeIn 0.3s ease forwards;
  z-index: 10;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-menu a {
  color: var(--celtic-gold);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  padding: 0.5rem 1rem;
}

.dropdown-menu a:hover {
  background-color: var(--forest-soft);
  border-radius: 4px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🌲 LOGO & TITLE */
.logo-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.logo {
  height: 65px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(186, 150, 83, 0.5);
}

.site-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  color: var(--celtic-gold);
  letter-spacing: 1px;
  margin-top: 1rem;
}

.tagline {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 0.5rem;
}

/* 📦 CARD SECTIONS */
.card {
  background-color: rgba(12, 25, 18, 0.85);
  border: 1px solid var(--celtic-gold);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(186, 150, 83, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

h2 {
  font-family: 'Inter', sans-serif;
  color: var(--celtic-gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.body-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* 📊 BUTTON */
.dashboard-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--celtic-gold);
  color: var(--forest-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(186, 150, 83, 0.4);
  transition: all 0.3s ease;
}

.dashboard-button:hover {
  background-color: #a8843d;
  box-shadow: 0 0 15px rgba(186, 150, 83, 0.6);
  transform: scale(1.05);
}

/* 🕯️ BASE FOOTER */
footer {
  padding: 1rem;
  background-color: rgba(12, 25, 18, 0.85);
  color: #888;
  border-top: 2px solid var(--celtic-gold);
}

/* 🌐 EXTENDED FOOTER */
.extended-footer {
  background: linear-gradient(to right, #0c1912, #142d1c);
  color: var(--text-muted);
  padding: 2.5rem 1rem 1.5rem;
  border-top: 2px solid var(--celtic-gold);
  font-family: 'Inter', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.footer-column h3 {
  color: var(--celtic-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-column p,
.footer-column ul {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.4rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: var(--celtic-gold);
}

.footer-column form {
  display: flex;
  flex-direction: column;
}

.footer-column input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background-color: #1e2e24;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* 📊 DASHBOARD EMBED STYLING (Enhanced) */
iframe {
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(186, 150, 83, 0.25);
  background-color: rgba(12, 25, 18, 0.85);
  margin: 1rem auto;
  display: block;
}
