
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background-color: #f7f0ea;
  color: #333;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
h1, h2, h3 {
  font-weight: 600;
  color: #5a665a;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1.25rem;
}
.site-header {
  background-color: #33362c;
  color: white;
  padding: 0rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  height: 50px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #e9d6cb;
}
.hero {
  background-color: #ecebe5;
  text-align: center;
  padding: 4rem 2rem 2rem;
}
.hero-image {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 6px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #a1705e;
}
.cta-button, .btn {
  background-color: #a1705e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
}
.btn:hover, .cta-button:hover {
  background-color: #8f5d4b;
}
.section-light {
  background-color: #f7f0ea;
}
.section-accent {
  background-color: #dfe8df;
}
.section {
  padding: 4rem 1.5rem;
}
.about-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.about-text {
  flex: 1 1 55%;
}
.about-image {
  flex: 1 1 35%;
}
.about-image img {
  max-width: 100%;
  border-radius: 8px;
}
.accordion {
  background-color: #ecebe5;
  border: none;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.accordion.active, .accordion:hover {
  background-color: #d6dbd3;
}
.panel {
  display: none;
  padding: 1rem;
  background-color: #f7f0ea;
  margin-bottom: 1.5rem;
  border-radius: 0 0 6px 6px;
}
.accordion-grid {
  display: flex;
  flex-direction: column;
}
.service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.service-card {
  background-color: #ecebe5;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 450px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.service-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.form-container {
  margin-top: 2rem;
  display: none;
}
input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
textarea {
  resize: vertical;
}
.expertise-split .expertise-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 2rem;
}
.expertise-left {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.expertise-tab {
  background-color: #ecebe5;
  border: none;
  text-align: left;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.expertise-tab:hover, .expertise-tab.active {
  background-color: #d6b8a4;
}
.expertise-right {
  flex: 1 1 70%;
  background-color: #fffaf6;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #d6b8a4;
  min-height: 300px;
}
.expertise-panel {
  display: none;
}
.expertise-panel.active {
  display: block;
}
.site-footer {
  background-color: #77827a;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
/* My Approach section with background image */
#approach {
  background-image: url("images/approach-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  z-index: 0;
}

#approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
  z-index: 1;
}

#approach .container {
  position: relative;
  z-index: 2;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background-color: #77827a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem;
  }

  .main-nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
