/* RESET & BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #faf9f6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 3px solid #e0c097;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  height: 60px;
  width: auto;
}

header h1 {
  font-size: 1.8rem;
  color: #004d40;
}

header .short {
  font-size: 1rem;
  font-weight: normal;
  opacity: 0.8;
}

nav a {
  color: #004d40;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0, 40, 30, 0.6), rgba(0, 40, 30, 0.6)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-inner {
  max-width: 820px;
  margin: auto;
}

.hero h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 5px 12px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #e0c097;
  color: #004d40;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn:hover {
  background: #d4af82;
  transform: translateY(-1px);
}

/* SECTIONS */
.services, .about, .contact, .projects {
  padding: 3rem 0;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #004d40;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

/* CARDS */
.card {
  background: #fff;
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin: 0.5rem 0;
  color: #004d40;
}

/* PROJECTS */
.projects img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ABOUT */
.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* CONTACT FORM */
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact textarea {
  height: 150px;
  resize: vertical;
}

.contact button {
  background: #004d40;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact button:hover {
  background: #00695c;
}

/* FOOTER */
footer {
  background: #fff;
  color: #004d40;
  text-align: center;
  padding: 1rem 0;
  border-top: 3px solid #e0c097;
  font-size: 0.9rem;
}