//* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2d3a32;
  background: #f6fbf8;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #d46a5e;
}

.logo img {
  height: 40px;   /* Adjust size */
  width: auto;
  display: block;
}


.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #2d3a32;
  font-weight: 500;
}

.navbar a.cta {
  border-bottom: 2px solid #d46a5e;
  padding-bottom: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 3rem 4rem;
  gap: 2rem;
}

.hero-text h3 {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #3e5347;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0.5rem 0 1rem;
  color: #244030;
}

.hero-text p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #555;
  max-width: 400px;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid #d46a5e;
  text-decoration: none;
  color: #244030;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #d46a5e;
  color: #fff;
}

.hero-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Services Section */
.services {
  padding: 3rem 4rem;
  background: #fff;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #244030;
}

.service-item {
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.3rem;
  color: #2d3a32;
}

.service-item p {
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  max-width: 600px;
}

/* About Section */
.about {
  padding: 3rem 4rem;
}

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

.about p {
  max-width: 700px;
  color: #555;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 3rem 4rem;
  background: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 1.5rem;
  }

  .hero-img img {
    margin-top: 1rem;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    border: 1px solid #eee;
  }

  .navbar ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
