@import url('https://fonts.googleapis.com/css2?family=Girassol&family=Lato:wght@400;700&display=swap');

:root {
  --yellow: #E3B505;
  --green: #2E5E4E;
  --sage: #8ba888;
  --orange: #e67e22;
  --terracotta: #C97C5D;
  --sand: #E6DCCF;
  --lightgreen: #e7ebdf;
  --muted-yellow: #f9f0c5;  /* soft, not highlighter-bright */
}

/* SNAPSHOTS SECTION – give it color + bottom divider */
.snapshots-section {
  background-color: var(--sage);   /* soft green instead of white */
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 3px solid var(--orange);  /* orange line under Snapshots */
}

/* RESUME SECTION – just spacing, it will sit under the orange line */
.resume-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 3px solid var(--orange);
}


/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Lato', sans-serif;
  color: var(--brown);
  background-color: var(--sand);
  line-height: 1.6;
  padding-top: 0 !important; /* room for fixed navbar – tweak 90–100 if needed */
}

h1, h2, h3 {
  font-family: 'Girassol', serif;
  color: var(--brown);
  letter-spacing: 0.3px;
}

.text-green { color: var(--green); }

.section-divider {
  height: 4px;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 0;      /* ✅ no gap under the orange line */
}

/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(180deg, #2E5E4E, #224136); /* deeper green */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  border-bottom: 3px solid var(--orange);               /* bold accent line */

  padding-top: 0.15rem !important;
  padding-bottom: 0.15rem !important;
  min-height: 0 !important; /* bar height = logo/tagline only */
}

/* logo + tagline container */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 !important;
  margin: 0;
  position: relative;                        /* for absolute tagline */
}

/* circular SM logo */
.nav-logo {
  height: 64px;
  width: auto;
  display: block;
}

/* tagline stays big but does NOT control bar height */
.nav-tagline {
  height: 160px;          /* was 80px – bump this up a LOT */
  width: auto;

  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);  /* nudges it so it's centered better */
}

/* ===== NAV BUTTONS (HOME / WORK / CONTACT) ===== */
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 0.2rem 1.2rem !important;         /* slimmer vertically */
  margin: 0 0.25rem;

  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  border-radius: 999px;                      /* pill shape */
  background: linear-gradient(180deg, #fff6dd, #f0d27a);
  border: 1px solid #c9a14a;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);

  color: #4a3412;
  text-decoration: none;

  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* slightly tighter on big screens */
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    padding: 0.18rem 1rem !important;
    font-size: 0.8rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  }
}

/* Hover */
.navbar-nav .nav-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, #fffbe5, #f6dd8b);
  color: #3a270a;
}

/* Active page */
.navbar-nav .nav-link.active {
  background: linear-gradient(180deg, #ffe9a7, #f2c35a);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  border-color: #b3862f;
}

/* Keyboard focus */
.navbar-nav .nav-link:focus-visible {
  outline: 2px solid #705300;
  outline-offset: 2px;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(to right, var(--lightgreen), #f7f3e6);
  margin-top: 0;   /* ← ensure it sits right under the nav */
}

.hero-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid var(--green);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-orange {
  background-color: var(--orange);
  color: #fff;
  border: none;
  font-weight: 600;
}
.btn-orange:hover {
  background-color: var(--yellow);
  color: var(--brown);
}
.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 600;
}
.btn-outline-green:hover {
  background-color: var(--green);
  color: #fff;
}

/* ===== ABOUT ===== */
.about-section {
  background-color: var(--muted-yellow);  /* ✅ muted yellow instead of green */
  margin-top: 0 !important;              /* ✅ no beige gap above */
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.image-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.image-collage img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-collage img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

/* ===== SNAPSHOTS ===== */
.snapshots-section {
  background-color: #fff;
}
.modeling-collage {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
}
.modeling-collage img {
  width: 48%;
  border-radius: 12px;
  border: 2px solid var(--green);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.modeling-collage img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* ===== RESUME ===== */
.resume-section {
  background-color: var(--terracotta);
}
.btn-green {
  background-color: var(--green);
  border: none;
  font-weight: 600;
}
.btn-green:hover {
  background-color: var(--yellow);
  color: var(--brown);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--green);
  color: var(--yellow);
  font-size: 0.9rem;
}
footer a {
  color: var(--yellow);
}
footer a:hover {
  color: #fff;
}

/* === REMOVE BEIGE STRIP UNDER NAVBAR === */

/* 1. No extra space above the page */
body {
  padding-top: 0 !important;
}

/* 2. Add space INSIDE the hero instead */
.hero-section {
  padding-top: 150px;   /* start here; tweak 100–130 until text sits nicely */
  margin-top: 0 !important;
}

/* FORCE HERO DOWN BELOW NAVBAR */
.hero-section,
#hero,
.hero {
  padding-top: 160px !important;  /* make it big so you *see* it move */
  margin-top: 0 !important;
}
/* Section framed by two orange lines */
.between-lines {
  border-top: 3px solid var(--orange);      /* top orange line */
  border-bottom: 3px solid var(--orange);   /* bottom orange line */
  background-color: var(--muted-yellow);          /* yellow only between the lines */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* SNAPSHOTS SECTION – colored background + orange divider */
#snapshots,
#snapshots-section,
.snapshots-section {
  background-color: var(--lightgreen) !important;  /* not white anymore */
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 3px solid var(--orange);          /* divider before Resume */
}

/* RESUME SECTION – terracotta with orange divider line */
#resume,
#resume-section,
.resume-section {
  background-color: var(--muted-yellow);
  color: #000000;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 3px solid var(--orange);   /* orange divider line */
}

/* explicitly force common text elements to black */
.resume-section h2,
.resume-section h3,
.resume-section p,
.resume-section li {
  color: #000000;
}

/* Orange bar at the end of the main section (e.g. My Work page) */
section:last-of-type {
  border-bottom: 3px solid var(--orange);
  padding-bottom: 3rem;  /* keeps some breathing room above the line */
  margin-bottom: 0;
}