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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background:#d4af37;
}

/* Header */
header {
  background: url('assets/law-bg.jpg') no-repeat center center/cover;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

header .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

header .btn:hover {
  background: #b99329;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #222;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  border-left: 5px solid #d4af37;
  padding-left: 10px;
}

section p, section li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Cards */
.card {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Grid for Practice Areas */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid .card {
  text-align: center;
}

/* Contact Section */
.contact-info {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #d4af37;
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.contact-info .btn:hover {
  background: #b99329;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 0.9rem;
}
