/* Root variables */
:root {
--primary-color: #e82e6f;
--text-color: #fff;
--background-color: #121212;
--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(255, 255, 255, 0); /* slight white overlay */
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  font-style: normal;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* subtle separation line */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* optional: a baby shadow for depth */
}

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

.nav-list li {
  margin: 0.5rem;
}

.nav-list a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

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

/* Base styles */
body {
  margin: 0;
  padding: 0rem;
  font-family: sans-serif;
  color: var(--text-color);
  line-height: 1;
  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: "Old Standard TT", serif;
  font-size: 2rem;
  margin: 0rem 0;
  color: var(--text-color);
  text-align: center;
  padding-top: 0rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

h2 {
  font-family: "Old Standard TT", serif;
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--text-color);
  padding-top: 2rem;
}

p, ol, ul, li {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

a {
 color: #f1f1f1;
}

a:hover {
 color: #fc3564;
}

/* Base styles */
body {
  margin: 0;
  color: #222;
}

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

.post {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-left: 1rem;
  padding-right: 1rem;
}


.post-title {
  padding-top: 25px;
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.post-date {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #777;
  text-align: center;
  font-family: "Old Standard TT", serif;
  font-style: italic;
}

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

/* Responsive images, links, etc */
.post-content img {
  max-width: 100%;
  border-radius: 8px;
}

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

  .post {
    padding: 1.5rem 2rem;
  }

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

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

.aqua-button {
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  margin: 24px auto 0 auto;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  color: #121212;
  border-radius: 50px;
  backdrop-filter: blur(2px);
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(74, 169, 233, 0.7);
  background: linear-gradient(
    to bottom,
    rgba(194, 233, 255, 0.7) 0%,
    rgba(120, 212, 255, 0.65) 40%,
    rgba(60, 181, 255, 0.6) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -3px 8px rgba(0, 0, 0, 0.15),
    0 8px 15px rgba(0, 80, 200, 0.3);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Shine overlay */
.aqua-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 50px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.2) 80%
  );
}

/* Hover effect */
.aqua-button:hover {
  background: linear-gradient(
    to top,
    rgba(160, 224, 255, 0.7) 0%,
    rgba(80, 200, 255, 0.65) 100%
  );
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.2),
    0 4px 10px rgba(0, 80, 200, 0.25);
  transform: translateY(2px);
}



