/* ----------------------------------------------------
   NATALIE PIERCE ARCHITECTURE — GLOBAL STYLESHEET
   Applies to: index.html, studio.html, projects.html
   ---------------------------------------------------- */

/* RESET & BASE ---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #0a0a0a;
  color: #e8e8e8;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: 0.2px;
}

h1, h2, h3, .section-title, .project h3, .value-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #f1f1f1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

section {
  padding: 120px 80px;
  max-width: 1500px;
  margin: 0 auto;
}

/* HEADER ---------------------------------------------------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
  z-index: 1000;
}

nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav ul:first-of-type {
  position: absolute;
  left: 80px;
}

nav ul:last-of-type {
  position: absolute;
  right: 80px;
}

nav a {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d6d6d6;
}

nav a:hover {
  color: #fff;
}

/* LOGO ---------------------------------------------------- */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  width: 200px;
  height: 90px;
}

.logo img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  display: block;
  max-width: 100%;
}

/* HERO ---------------------------------------------------- */
.hero {
  height: 100vh;
  background: url('../images/hero_placeholder.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
}

.hero h1 {
  font-weight: 300;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 15px;
}

/* INTRO ---------------------------------------------------- */
.intro {
  background: #111;
  text-align: center;
}

.intro h3 {
  color: #aaa;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.intro h2 {
  font-size: 1.6rem;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #ddd;
}

.intro p {
  color: #bbb;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.intro a.btn {
  display: inline-block;
  border: 1px solid #ccc;
  color: #ccc;
  padding: 10px 30px;
  transition: 0.3s;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}

.intro a.btn:hover {
  background: #ccc;
  color: #000;
}

/* ABOUT (Studio Page) ---------------------------------------------------- */
.about {
  background: #111;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.about img {
  width: 600px;
  height: 420px;
  object-fit: cover;
  background: #333;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.about-text p {
  color: #c8c8c8;
  margin-bottom: 20px;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .about {
    flex-direction: column;
  }

  .about img {
    width: 100%;
    height: auto;
  }

  .natalie-profile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .natalie-profile img {
    width: 100%;
    height: auto;
  }

  .natalie-text {
    width: 100%;
  }
}



/* PHILOSOPHY (Studio Page) ---------------------------------------------------- */
.philosophy {
  background: #0e0e0e;
}

.philosophy h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 80px;
}

.philosophy .columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
}

.philosophy .item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.philosophy .item p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
}

/* PROJECTS (Home / Projects Page) ---------------------------------------------------- */
.projects {
  background: #0e0e0e;
}

.projects h2 {
  text-align: center;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ddd;
  margin-bottom: 80px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px;
}

.project {
  text-align: center;
  transition: transform 0.3s;
}

.project:hover {
  transform: translateY(-6px);
}

.project img {
  display: block;
  width: 100%;
  height: auto;
  background: none;
  object-fit: contain;
  transform: none;
  image-rendering: crisp-edges;
}

.project h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #fff;
}

.project p {
  color: #aaa;
  font-size: 0.95rem;
}

/* Individual project layout */
.project-block {
  margin-bottom: 160px;
}

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.project-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: none;
  image-rendering: crisp-edges;
  transform: none;
}

.project-content {
  margin-top: 25px;
  text-align: left;
}

.project-title {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.project-meta {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-link {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid #c49a6c;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c49a6c;
}

.project-link:hover {
  color: #fff;
}

/* CORE VALUES ---------------------------------------------------- */
.core {
  background: #111;
  text-align: center;
}

.core h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ddd;
  margin-bottom: 80px;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.value-number {
  font-size: 8rem;
  color: #c49a6c;
  margin-bottom: 15px;
}

.value-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.value-text {
  color: #bbb;
  font-size: 1rem;
}

/* GALLERY ---------------------------------------------------- */
.gallery {
  background: #0b0b0b;
  text-align: center;
}

.gallery h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  background: none;
  object-fit: contain;
  image-rendering: crisp-edges;
}

/* CTA ---------------------------------------------------- */
.cta {
  background: #111;
  text-align: center;
  padding: 100px 60px;
  border-top: 1px solid #222;
}

.cta .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  background: none;
  width: 100%;
}

.cta .logo img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  max-width: 100%;
}

.cta p {
  color: #aaa;
  margin-top: 10px;
  line-height: 1.8;
}

.cta a {
  color: #c49a6c;
  text-decoration: none;
}

.cta a:hover {
  text-decoration: underline;
}

.natalie-profile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}

.natalie-profile img {
  width: 234px;
  height: 327px;
  object-fit: cover;
}

.natalie-text {
  max-width: 400px;
}

.natalie-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.natalie-text p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}


/* FOOTER ---------------------------------------------------- */
footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #222;
}

footer a {
  color: #aaa;
}

footer a:hover {
  color: #fff;
}

/* RESPONSIVE ---------------------------------------------------- */
@media (max-width: 900px) {

  section {
    padding: 60px 25px;
  }

  /* ===== HEADER / NAV ===== */
  nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 15px;
  }

  nav ul {
    position: static !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
  }

  .logo {
    order: -1;
    margin-bottom: 10px;
  }

  .logo img {
    width: 160px;
    height: auto;
  }

  /* ===== HERO ===== */
  .hero {
    height: 70vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* ===== ABOUT / PHILOSOPHY ===== */
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    width: 100%;
    height: auto;
  }

  .philosophy .columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .philosophy .item {
    padding: 0 10px;
  }

  /* ===== PROJECTS ===== */
  .projects {
    padding-top: 140px;
  }

  .project-block {
    margin-bottom: 100px;
  }

  .project-image img {
    width: 100%;
    height: auto;
  }

  /* ===== CORE VALUES / GALLERY ===== */
  .values {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* ===== CTA ===== */
  .cta {
    padding: 80px 30px;
  }

  .cta .logo img {
    width: 150px;
  }
  .portrait {
    padding: 80px 0;
    display: flex;
    justify-content: center;
  }

  .portrait-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .portrait-wrapper img {
    object-fit: cover;
  }

  .portrait-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
  }

  .portrait-text p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    margin-top: 10px;
  }


}
