/* Root variables */
:root {
--primary-color: blue;
--text-color: #e5e5e5;
--background-color: #e5e5e5;
--dark-shadow: #0a0a0a;
--light-shadow: #242424;
--padding-top-desktop: 1.5rem;
--padding-right-desktop: 2rem;
--padding-bottom-desktop: 1.5rem;
--padding-left-desktop: 2rem;
}

/* Navigation Bar */
nav {
  background-color: rgba(230, 230, 230, .35); 
  font-family: "Helvetica", serif;
  font-weight: 900;
  font-style: normal;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 0px solid rgba(0, 0, 0, 0); /* subtle separation line */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* optional: a baby shadow for depth */
}

.nav-list {
  font-family: "Helvetica", serif;
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin: .6rem; 
  letter-spacing: -0.1em;
}

.nav-list a {
  color: #0c0c0c;
  font-size: 28px;
  text-decoration: none;
}

.nav-list a:hover {
  text-decoration: underline;
  color: #0c0c0c;
}

/* Base styles */
body {
  margin: 0;
  padding: 0rem;
  font-family: sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  background-color: var(--background-color);
}

/* Main content */
main {
  max-width: 1800px;
  margin: 0 auto;
  padding: var(--padding-mobile);
}

@media (min-width: 1024px) {
  main {
    padding: var(--padding-desktop);
    padding-left: 15rem;
    padding-right: 15rem;
  }
}

h1 {
  font-family: "Helvetica", serif;
  margin: 0rem 0;
  color: var(--text-color);
  text-align: center;
}

.image-title {
  font-family: "Helvetica", serif;
  margin: 0rem 0;
  color: var(--text-color);
  text-align: center;
  padding-top: 20px;
}

h2 {
  font-family: "Helvetica", serif;
  font-size: 1.35rem;
  margin: 1rem 0;
  color: var(--text-color);
  text-align: center;
}

p {
  font-size: 1rem;
  margin-bottom: 0rem;
  color: var(--text-color);
  text-align: center;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #e5e5e5;
}

.feed {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post {
  padding: 1.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: blue;
  border-radius: 4px;

  transition: transform 200ms ease-out;
}

.post:hover {
  transform: scale(.99);
}


.post-content {
  font-size: 1rem;
  line-height: 1.25;
}

/* Specific alignments */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content .post-date {
  text-align: left;
  letter-spacing: -0.085em;
  
}

.post-content p {
  text-align: left;
  line-height: 1.25rem;
}

.post-date {
  font-size: .85rem;
  font-family: "Helvetica", serif;
  font-style: italic;
  margin: 0.5rem 0rem;
}

/* Center buttons */
.post-content {
  display: block;
  margin: 0rem auto 0 auto;
  text-align: center;
}

.post-content img {
  display: block;
  margin: 0rem auto;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}


/* Desktop enhancements */
@media (min-width: 768px) {
  .feed {
    padding: 0.5rem;
    gap: 0rem;
  }

  .post {
    padding: 1.5rem 2rem;
  }

  .post-content {
    font-size: 1.5rem;
  }
}

a:hover {
  font-style: underline;
}

a:visited {
  text-decoration: none;
}

@media (min-width: 768px) {
  .work-section {
    padding-left: 35rem; 
    padding-right: 35rem; 
  }
}

button,
a.white-button, 
a.black-button,
a.blue-button {
  display: inline-block;
  font-family: "Helvetica";
  font-weight: 600;
  letter-spacing: -0.05em;
  border-radius: 0;
  text-decoration: none;
  transition: box-shadow 0.5s ease, text-decoration 0.5s ease;
}

.white-button {
  color: #e5e5e5;
  background: blue;
  border: 4px solid #e5e5e5;
  box-shadow: 13px 13px 0 #e5e5e5;
  width: 100%;
  max-width: 200px;
  padding: 12px 30px;
  margin: 12px auto;
  font-size: 24px;
}

.white-button:hover {
  box-shadow: 2px 2px 0 #e5e5e5;
  text-decoration: underline;
}

.black-button {
  color: #0c0c0c);
  background: #e5e5e5;
  border: 2px solid #0c0c0c;
  box-shadow: 9px 9px 0 #0c0c0c;
  width: 100%;
  max-width: 320px;
  padding: 12px 30px;
  margin: 12px auto;
  font-size: 28px;
}

.black-button:hover {
  box-shadow: 2px 2px 0 #0c0c0c;
  text-decoration: underline;
}

.blue-button {
  color: blue;
  background: #e5e5e5;
  border: 2px solid blue;
  box-shadow: 9px 9px 0 blue;
  width: 100%;
  max-width: 320px;
  padding: 12px 30px;
  margin: 12px auto;
  font-size: 28px;
}

.blue-button:hover {
  box-shadow: 2px 2px 0 blue;
  text-decoration: underline;
}





