:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-muted: #6e6e6e;
  --font-primary: "Work Sans", sans-serif;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --transition-base: 0.6s ease;
}

html {
  scroll-behavior: smooth;
}

.work-sans-light {
  font-family: "Work Sans", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

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

a {
  color: black;
  text-decoration: none;
}

/*body {

    font-family: 'Work Sans';
}*/
body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
}

ul {
  list-style: none;
  padding-left: 0;
}

.navtest {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 3;
}

.main-unfold {
  position: relative;
  z-index: 2;
  background-color: white;
  min-height: 100vh;
}

.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
}

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Global Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal {
  transition-duration: 3s;
}

.index-title {
  font-size: 5rem;
  color: white;
  letter-spacing: 0.04em;
}

.top-section {
  background-image: url(../media/IvanaBrenner_BackgroundImage.jpg);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  height: 100svh;
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===============================
   HOME WORKS GRID
================================= */
.home-works {
  padding: 7rem 1.5rem 7rem;
  background: white;
}

.works-grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2rem;
}

/* Tablet */
@media (max-width: 992px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ===============================
   WORK ITEM
================================= */
.work-item {
  min-width: 0;
}

.work-item a {
  display: block;
  text-decoration: none;
  color: black;
}

/* Image frame (for contained zoom) */
.work-image {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.work-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle contained zoom */
.work-item a:hover img {
  transform: scale(1.035);
}

/* ===============================
   META (TITLE + VENUE)
================================= */
.work-meta {
  margin-top: 0.75rem;
  text-align: center;
}

.work-meta h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.work-meta p {
  font-size: 0.85rem;
  color: #666;
  margin: 0.25rem 0 0;
}

footer {
  background: white;
  padding: 4rem 2rem 2rem;
  font-size: 0.9rem;
  position: relative;
  bottom: 0;
  z-index: 1;
}

.footer-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-left li {
  margin-bottom: 0.5rem;
}

.footer-left a {
  text-decoration: none;
  color: #444;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  justify-content: flex-start; /* aligns inside column */
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.75rem;
}

.email-form input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.5rem 0;
  background: transparent;
}

.email-submit {
  border: none;
  background: none;
  padding: 0;
  color: #444;
  cursor: pointer;
  align-self: flex-end;
}

.email-submit:hover {
  text-decoration: underline;
}

.dev-credits {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 576px) {
  .footer-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .email-form {
    align-items: center;
    text-align: center;
  }
  .email-submit {
    align-self: center;
  }
}
.project-page {
  width: 100%;
  background-color: white;
  padding-bottom: 4rem;
}
.project-page .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.project-page .project-header {
  text-align: center;
  margin: 6rem 0 4rem;
}
.project-page .project-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.project-page .project-header .details {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #666;
}
.project-page .project-hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 6rem;
}
.project-page .project-body img {
  width: 100%;
  max-width: 900px;
  display: block;
  height: auto;
}
.project-page .project-body p {
  margin: 3rem auto;
  max-width: 700px;
  line-height: 1.6;
  padding: 0 1rem;
  font-size: 1rem;
  color: #333;
}
.project-page .project-body figure {
  margin: 4rem auto;
  max-width: 900px;
  text-align: center;
  margin: 6rem auto;
}
.project-page .project-body figure img {
  width: 100%;
  height: auto;
  display: block;
}
.project-page .project-body figcaption {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.75rem;
  text-align: center;
}
.project-page .project-body .description {
  max-width: 900px;
  margin: 2rem auto;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}
.project-page .project-image.detail {
  max-width: 700px;
}
.project-page .project-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 8rem auto 0;
  max-width: 900px;
  font-size: 1rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}
.project-page .project-nav a {
  text-decoration: none;
  color: black;
}
.project-page .project-nav a:hover {
  text-decoration: underline;
}

/*
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.7s;
}

.delay-3 {
  transition-delay: 1.1s;
}
*/
/* Page Header */
.page-header {
  max-width: var(--max-width);
  margin: var(--space-xl) auto var(--space-lg);
  padding: 0 var(--space-md);
}

.page-header h1 {
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* Two Column Layout */
.about-intro {
  max-width: var(--max-width);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-text p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Statement Section */
.about-statement {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
}

.about-statement h2 {
  margin-bottom: var(--space-md);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.statement-text p {
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* Responsive */
@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
}
.cv-page {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 3rem;
}

.cv-section {
  margin-bottom: calc(var(--space-lg) * 0.8);
}

/*
.cv-section h2 {
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: calc(var(--space-md) * 0.6);
}*/
.cv-section h2 {
  font-size: 1.1rem; /* or 1rem max */
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none; /* keep your sentence case */
  margin-bottom: calc(var(--space-md) * 0.6);
}

.cv-entry {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  margin-bottom: calc(var(--space-sm) * 0.75);
}

/* For entries without a year (like Education) */
.cv-entry.no-year {
  display: block; /* full width, no grid gap */
  margin-bottom: var(--space-sm);
}

.cv-entry.no-year p {
  margin-left: 0; /* aligns with left edge */
}

.cv-year {
  color: var(--color-muted);
}

.cv-entry p {
  margin: 0;
  line-height: 1.6;
}

.contact {
  padding: 12vh 8vw;
  text-align: center;
}

.contact-title {
  margin-bottom: 3rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-email a {
  font-size: 1.3rem;
}/*# sourceMappingURL=styles.css.map */