
/* ========================
   Root & Reset
======================== */
:root {
  --green-dark: #2f3f33;
  --green-mid: #4a5d50;
  --tan-light: #f5f2ec;
  --tan-mid: #e5dfd4;
  --accent: #c89b6b;
  --text-dark: #2b2b2b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  color: var(--text-dark);
  background: var(--tan-light);
}

/* ========================
   Top Banner
======================== */
.top-banner {
  background: #1f2a22;
  color: #d9d9d9;
  font-size: 12px;
  padding: 6px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 1px;
}

.top-banner a {
  color: #d9d9d9;
  text-decoration: none;
  margin-left: 15px;
}

/* ========================
   Navigation
======================== */
.navbar {
  background: var(--green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

.logo {
  color: #f3efe8;
  font-size: 22px;
  font-style: italic;
}

.logo img {
  height: 70px;          /* Adjust as needed */
  width: auto;
  display: block;
}

.nav-links a {
  color: #f3efe8;
  text-decoration: none;
  margin: 0 14px;
  font-size: 13px;
  letter-spacing: 1px;
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 18px;
  color: var(--accent);
  font-size: 12px;
  text-decoration: none;
}

/* ========================
   Hero Section
======================== */

.hero {
  height: 78vh;
  background:
    url("images/hero2.jpg"),
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    linear-gradient(120deg, #9ba88f, #5e6f63);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 70px;
  color: #ffffff;
}

.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero-btn {
  padding: 12px 26px;
  border: 1px solid #ffffff;
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ========================
   Welcome Section
======================== */

.welcome {
  background:
    url("images/welcome-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 40px;
}

.welcome h2 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 14px;
}

.welcome p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

/* ========================
   Portfolio Categories
======================== */
.portfolio {
  background: var(--tan-mid);
  padding: 60px 40px;
}

.portfolio-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.card {
  background: white;
  text-align: center;
  padding-bottom: 16px;
}

/* Example "images" */
.card-img {
  height: 210px;
  background-size: cover;
}

.img-portraits {
  background-image:
    url("images/portraits.jpg"),
    linear-gradient(
      rgba(214, 192, 203, 0.55),
      rgba(169, 133, 154, 0.55)
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-seniors {
  background-image:
    url("images/seniors.jpg"),
    linear-gradient(
      rgba(214, 192, 203, 0.55),
      rgba(169, 133, 154, 0.55)
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-friends {
  background-image:
    url("images/friends.jpg"),
    linear-gradient(
      rgba(214, 192, 203, 0.55),
      rgba(169, 133, 154, 0.55)
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.img-sports {
  background-image:
    url("images/sports.jpg"),
    linear-gradient(
      rgba(214, 192, 203, 0.55),
      rgba(169, 133, 154, 0.55)
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.card h3 {
  margin: 16px 0 6px;
  font-weight: normal;
  letter-spacing: 1px;
}

.card a {
  font-size: 12px;
  color: var(--green-mid);
  text-decoration: none;
}

/* ========================
   Responsive
======================== */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 38px; }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}


.about-hero {
  height: 70vh;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("images/about-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: normal;
  letter-spacing: 2px;
}

/* =============================
   Intro Headline
============================= */
.about-intro {
  background: var(--cream);
  text-align: center;
  padding: 90px 40px 40px;
}

.about-intro h2 {
  font-size: 32px;
  font-weight: normal;
  color: var(--green-dark);
}

/* =============================
   Main About Section
============================= */
.about-content {
  background: var(--cream);
  padding: 60px 40px 110px;
}

.about-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  height: 600px;
  background: url("images/about-portrait.jpg") center / cover no-repeat;
}

.about-copy p {
  font-size: 15px;
  margin-bottom: 22px;
}

/* =============================
   Responsive
============================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 450px;
  }

  .about-hero-content h1 {
    font-size: 40px;
  }
}
