/* Font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

/* Colours */
:root {
  --green-dark: #3e4532;
  --green-deep: #323827;
  --gold: #d9c58a;
  --cream: #f4f1e6;
  --text-main: #ebe7da;
  --text-muted: #c9c4b2;
}

/* Global reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--green-dark);
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */

.site-header {
  background: rgba(50, 56, 39, 0.96);
  border-bottom: 1px solid rgba(217, 197, 138, 0.3);
  padding: 1rem 1.8rem;
  display: flex;
  justify-content: space-between; /* keep this */
  align-items: center;
  position: relative; /* allows absolute centering */
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 90px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.logo-name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold);
  font-size: 2em;
}

.logo-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.main-nav a:hover {
  color: var(--cream);
}

/* ===== HERO SECTION ===== */

/* Wrapper with no padding so image sits flush */
.hero {
  margin: 0;
  padding: 0;
  position: relative;
}

.hero {
  background-color: #323821;
  padding-bottom: 1rem;   /* <— You can increase this */
}

/* Full-bleed hero image */
.hero-image {
  width: 100vw;
  max-width: 100vw;
  height: 200px;            /* adjust height as you wish */
  object-fit: cover;
  object-position: center;
  display: block;

  /* Make the image break out of the page container */
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

/* Centred text below the image */
.hero-content {
  max-width: 1100px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  text-align: center;
}

.hero h1 {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero p {
  margin: 1rem auto 0;
  max-width: 800px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Responsive image heights */
@media (max-width: 900px) {
  .hero-image {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 160px;
  }
}

.hero {
  background-color: #323821;
}

/* Button */

/* ===== BUTTON (Evergreen Green + Gold Text) ===== */

/* ===== Transparent Gold Button ===== */

.btn {
  display: inline-block;
  margin-top: 2.5rem;                 /* move lower */
  padding: 0.9rem 2rem;
  background: transparent;            /* no fill */
  color: #C3A770;                     /* header gold */
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 0.6rem;
  text-decoration: none;
  border: 2px solid #C3A770;          /* gold border */
  transition: 0.25s ease;
  cursor: pointer;
}

/* Hover: subtle gold glow + inverted text */
.btn:hover {
  background: rgba(195, 167, 112, 0.12);    /* faint gold tint */
  color: #ffffff;                           /* white text on hover for contrast */
  border-color: #C3A770;
}


  
/* Sections */

.section {
  padding: 4rem 1.5rem;
}

.section-alt {
  background: var(--green-deep);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin: 0 0 0.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.intro {
  max-width: 900px;
  margin: 0.5rem auto 2.2rem;
  text-align: justify;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Services */

.services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* cleaner & better for images */
  gap: 1.5rem;
}

.service-card {
  border: 1px solid rgba(217, 197, 138, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: radial-gradient(circle at top left,
              rgba(217, 197, 138, 0.15), transparent);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.97rem;
}

.service-photo {
  width: 100%;
  height: 200px;         /* nice consistent height */
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(217, 197, 138, 0.25);
  image-rendering: smooth;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* About / Team */


@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 people in a row */
  gap: 1.5rem;
}

.team-card {
  border: 1px solid rgba(217, 197, 138, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: radial-gradient(circle at top left,
              rgba(217, 197, 138, 0.15), transparent);
}

.team-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  min-height: 3.6rem;  /* makes job titles line up */
}

.team-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.team-bio {
  margin: 0;
  font-size: 0.97rem;
}

/* Only if you're using photos above the names */
.team-photo {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

/* Contact */

.intro {
  max-width: 900px;
  margin: 0.5rem auto 2.2rem;
  text-align: center;  /* <-- add this */
  color: var(--text-muted);
  line-height: 1.7;
}

#contact .contact-layout {
  text-align: center;
}

/* Footer */

.site-footer {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(217, 197, 138, 0.3);
}

/* Responsive header */

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}