/* ===== Global Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", serif;
  color: #1e1e1e;
  background-color: #e6e3de;
  line-height: 1.6;
}

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:1rem 6%;
  background-color: #2f3e46;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo img {
  height:130px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #e8e8e8;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c97b63;
}

.nav-links a.active {
  color: #c97b63;
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(47, 62, 70, 0.55), rgba(47, 62, 70, 0.65)),
              url('images/Mountain.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 500px;
height: 75vh;
max-height: 600px;
  padding: 0 10%;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ===== Primary CTA ===== */
.btn-primary {
  background-color: #c97b63;
  color: white;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* ===== Info Section ===== */
.info {
  padding: 5rem 10%;
  text-align: center;
  background-color: #ffffff;
}

.info h2 {
  font-size: 2rem;
  color: #2f3e46;
  margin-bottom: 1rem;
}

.info p {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Quote Section ===== */
.quote {
  background-color: #7a9e9f;
  padding: 4rem 10%;
  text-align: center;
  font-style: italic;
}

.quote blockquote {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  color: #1e1e1e;
}

.quote cite {
  font-size: 1rem;
  color: #2f3e46;
}

/* ===== Footer ===== */
.footer {
  background-color: #2f3e46;
  color: #e6e3de;
  text-align: center;
  padding: 2rem 10%;
  font-size: 0.95rem;
}

.footer a.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  background-color: #c97b63;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer a.btn-secondary:hover {
  background-color: #b06a55;
  transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {

  .header {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .info h2 {
    font-size: 1.6rem;
  }
}

/* ===== ABOUT PAGE ===== */

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  padding: 4rem 10%;
  background-color: #e6e3de;
  gap: 3rem;
}
.about-section h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #2f3e46; /* same dark tone used elsewhere */
}
.about-section p {
  font-family: "Lora", serif;
  color: #1e1e1e;
}


.about-section .left-side {
  flex: 1;
}

.about-section .right-side {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.attorney-photo {
  width: 80%;
  height: 80%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Header links */
.header-container-2 a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.header-container-2 a:hover {
  color: #c97b63;
}

.header-container-2 a.active {
  color: #c97b63;
}

/*Contact form*/
/* ===== Contact Page ===== */

.contact-section {
  padding: 5rem 10%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.contact-container h1 {
  font-size: 2.2rem;
  color: #2f3e46;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.contact-container p {
  margin-bottom: 2rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #2f3e46;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Lora", serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c97b63;
  box-shadow: 0 0 0 2px rgba(201, 123, 99, 0.2);
}

