﻿/* Base */

:root {
  --bg-main: #f5f3f1;
  --bg-alt: #e7e3de;
  --text-main: #1f1f1f;
  --text-muted: #6b6b6b;
  --accent: #c2a878;
  --border-soft: #d4cec5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}

/* HERO */

.hero {
  position: relative;
  min-height: 80vh;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Replace with your hero image */
  background-image: url("images/Still life/The Humble Root.jpg");
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px 7vw 48px;
 /* background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.75) 100% */
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.site-identity {
  color: #f8f5f0;
}

.site-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-tagline {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #ffffff;
  text-shadow: 0px 0px 6px rgba(40, 30, 20, 0.55); 
}

/* NAV */

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-link {
  color: #f8f5f0;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* HERO TEXT */

.hero-text {
  max-width: 520px;
  color: #f8f5f0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.4rem;
}

/* SECTION BASE */

section {
  padding: 64px 7vw;
}

/* PORTFOLIO */

.portfolio-section {
  background-color: var(--bg-main);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background-color: #f9f7f4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.portfolio-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(40%);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.portfolio-card:hover .portfolio-thumb {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Replace these with real images */
.thumb-still-life {
  background-image: url("./images/Still life/The Humble Root.jpg");
}

.thumb-macro {
  background-image: url("./images/Macro/Quiet Radiance.jpg");
}

.thumb-playful {
  background-image: url("./images/Playful/Super Chicken.jpg");
}

.portfolio-content {
  padding: 18px 18px 20px;
}

.portfolio-content h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.portfolio-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ABOUT / ARTIST STATEMENT */

.about-section {
  background-color: var(--bg-alt);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.about-inner h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.about-inner p {
  margin: 0;
  font-size: 1rem;
}

/* ===========================
   RECOGNITION SECTION
   =========================== */

.recognition-section {
  background: #F5F3F1;
  padding: 6rem 2rem;
}

.recognition-inner {
  max-width: 900px;
  margin: 0 auto;
}

.recognition-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  color: #111111;
  text-align: center;
}

.recognition-intro {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333333;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.recognition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recognition-list li {
  display: block;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.recognition-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0.25rem;
}

.recognition-detail {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: #111111;
  letter-spacing: 0.03em;
  display: block;
  text-align: right;
  margin-top: 0.15rem;
}



/*  text-transform: uppercase;*/
  opacity: 0.85;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .recognition-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .recognition-detail {
    font-size: 0.95rem;
  }
}

/* FOOTER */

.footer {
  background-color: #1f1f1f;
  color: #f5f3f1;
  padding: 32px 7vw;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.9rem;
  text-align: center;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-overlay {
    padding: 20px 5vw 40px;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 48px 5vw;
  }
}

@media (max-width: 600px) {
  .site-name {
    font-size: 1.4rem;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}
