:root {
  --primary-color: #002b5b; /* Deep Navy */
  --accent-color: #b38b59; /* Gold/Copper */
  --bg-light: #f9fafb;
  --text-dark: #1a1a1a;
  --text-muted: #4a5568;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header & Nav */
header {
  background: var(--white);
  padding: 1.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  height: 80vh;
  background:
    linear-gradient(rgba(0, 43, 91, 0.7), rgba(0, 43, 91, 0.7)),
    url("hero_bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 10%;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  max-width: 900px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #967448;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
  padding: 100px 10%;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.legacy-badge {
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--primary-color);
}

/* Services Section */
.services {
  padding: 100px 10%;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 50px 10% 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .about {
    grid-template-columns: 1fr;
  }
  header {
    padding: 1.5rem 5%;
  }
  nav ul {
    display: none;
  }
}
