:root {
  --primary-blue: #1A4B6E;
  --primary-wood: #D2B48C;
  --accent-orange: #F28C28;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --border-color: #ddd;
  --container-max-width: 1200px;
  --nav-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Header & Navbar */
.main-header {
  background-color: var(--primary-blue);
  color: var(--text-light);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links li.active a {
  border-bottom: 2px solid var(--primary-wood);
}

.lang-selector {
  display: flex;
  gap: 10px;
}

.lang-selector img {
  height: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.lang-selector img:hover {
  transform: scale(1.1);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.text-orange {
  color: var(--accent-orange);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
}

.btn-cta {
  background-color: var(--accent-orange);
  color: var(--text-light);
}

.btn-cta:hover {
  background-color: #d17520;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 60px 0;
}

h1, h2, h3, h4 {
  margin-bottom: 20px;
  color: var(--primary-blue);
}

/* Cards/Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.facility-item {
  background: var(--text-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.bg-wood {
  background-color: var(--primary-wood);
  color: var(--text-dark);
}

.bg-wood h1, .bg-wood h2, .bg-wood h3 {
  color: var(--primary-blue);
}

/* Update facility item icons */
.facility-item i {
  background: var(--primary-wood);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-style: normal;
}

/* Section highlights */
section:nth-of-type(even) {
  background-color: #fff;
}

section:nth-of-type(odd) {
  background-color: var(--bg-light);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

tr:nth-child(even) {
  background-color: #fcfcfc;
}

/* Forms */
.form-card {
  background: var(--text-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(26, 75, 110, 0.2);
}

/* Video */
video {
  width: 100%;
  max-width: 1000px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Utility */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .nav-links {
    display: none; /* Mobile menu logic should be added */
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--primary-blue);
    padding: 20px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}
