/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Consistent Header Styles */
h1 {
  font-size: 2.5rem; /* ~40px, matches index.html hero scaling */
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem; /* ~32px */
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.4em;
}
h3 {
  font-size: 1.5rem; /* ~24px */
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.3em;
}

/* Make sure .hero h1 matches global h1, but stays white on hero background */
.hero h1 {
  font-size: 2.5rem; /* sync with global h1 */
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #3498db;
  transition: color .3s ease;
}

a:hover {
  color: #2980b9;
}

/* Container (universal) */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 20px;
  box-sizing: border-box;
}

/* Header - FIXED for consistency */
.site-header {
  background: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px !important; /* Force consistent padding */
}

/* Logo - FIXED sizing */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1.2;
  margin: 0; /* Remove any default margin */
}

.logo em {
  font-size: 13px;
  font-style: italic;
  font-weight: normal;
  color: #555;
  display: block; /* Ensure it's on its own line */
}

/* Navigation */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.main-nav li {
  margin-left: 15px;
  position: relative;
}

.main-nav a {
  color: #555;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 8px;
  display: inline-block;
}

/* Dropdown Menu */
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 5px;
  min-width: 200px;
  z-index: 1000;
  white-space: nowrap;
}

.main-nav .dropdown-menu li {
  margin: 0;
}

.main-nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
}

.main-nav .dropdown-menu a:hover {
  background: #f4f4f9;
  color: #2980b9;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-details {
  font-size: 20px;
  margin-bottom: 0;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 0;
  text-align: center;
}

/* Map */
.map-embed {
  border: 0;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;
  height: 500px;
  margin: 20px auto;
  display: block;
}

/* Footer */
.site-footer {
  background-color: #34495e;
  color: #ecf0f1;
  padding: 40px 0;
  text-align: center;
}

.footer-social a {
  color: #ecf0f1;
  font-size: 18px;
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
  }
  .main-nav ul {
    margin-top: 10px;
  }
  .main-nav li {
    margin: 0 8px;
  }
  .hero h1 {
    font-size: 2rem; /* smaller for mobile */
  }
  .map-embed {
    height: 350px;
  }
}