/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  color: #a67c52;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #a67c52;
}

.hero {
  background: url('images/hero.png') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 70px; /* offset for header height */
  color: #ffffff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
}

.about,
.services,
.contact {
  padding: 4rem 0;
  background: #ffffff;
  margin-top: 1rem;
}

.about h2,
.services h2,
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #a67c52;
  font-family: 'Montserrat', sans-serif;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service i {
  font-size: 3rem;
  color: #a67c52;
  margin-bottom: 1rem;
}

.service h3 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

button[type="submit"] {
  background: #a67c52;
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

button[type="submit"]:hover {
  background: #8a623e;
}

footer {
  background: #333333;
  color: #ffffff;
  padding: 1rem 0;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Gallery styles */
.gallery {
  padding: 4rem 0;
  background: #ffffff;
  margin-top: 1rem;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #a67c52;
  font-family: 'Montserrat', sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
