:root {
  --primary-color: #0b2046; /* Navy blue */
  --secondary-color: #d1bfae; /* Beige / Sand */
  --accent-color: #a88b68; /* Bronze/Gold */
  --text-color: #333333;
  --bg-color: #ffffff;
  --light-bg: #f7f7f7;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
}

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

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-links a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  height: 80vh;
  background-image: linear-gradient(rgba(11, 32, 70, 0.7), rgba(11, 32, 70, 0.7)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* Practice Areas Grid */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.practice-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--accent-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.practice-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Values Section */
.values-section {
  background-color: var(--primary-color);
  color: white;
}

.values-section .section-title {
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: left;
}

.value-item h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: var(--primary-color);
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    margin: 15px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
}
