/*
Harbour's Vegan Bakery - Brand Colors
*/
/*
Harbour's Vegan Bakery - Typography
*/
/*
Responsive font sizes
*/
.alfa-slab-one-regular {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

html {
  font-size: calc(15px + 0.390625vw);
}

button {
  all: unset;
  cursor: pointer;
}

/*@font-face {
    font-family: 'Anton';
    src: local('Anton'), url("../fonts/AquilineTwo.ttf") format('truetype');
}*/
@font-face {
  font-family: "Roboto-Light";
  src: local("Roboto-Light.ttf"), url("./fonts/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "RougeScript-Regular";
  src: local("RougeScript-Regular.ttf"), url("./fonts/RougeScript-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "abys";
  src: local("Abys-Regular.woff2"), url("./fonts/Abys-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "aileron";
  src: local("abys.thin.woff2"), url("./fonts/aileron.thin.woff2") format("woff2");
  font-display: swap;
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-410px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slide-right {
  animation: slideRight 1s ease 0s 1 normal forwards;
}

.disappear {
  display: none;
}

@keyframes shadowPulse {
  0% {
    box-shadow: 0px 0px 5px 1px #98bffe;
  }
  25% {
    box-shadow: 0px 0px 12px 4px #98bffe;
  }
  50% {
    box-shadow: 0px 0px 16px 7px #98bffe;
  }
  75% {
    box-shadow: 0px 0px 12px 4px #98bffe;
  }
  10% {
    box-shadow: 0px 0px 5px 1px #98bffe;
  }
}
@keyframes hamburgerEntrance {
  0% {
    opacity: 0;
    transform: translateX(-250px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*Scale outwards*/
@keyframes scaleOutwards {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/*slide right animation*/
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-250px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*slide left*/
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*slide down*/
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*animated gradient*/
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*Wobble*/
@keyframes wobble {
  0%, 100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
/*shrink in*/
@keyframes shrinkIn {
  0% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*Animated border*/
@keyframes animatedBorder {
  0% {
    width: 0;
    height: 0;
    border-top-color: #fff;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  50% {
    width: 100%;
    height: 0;
    border-top-color: #fff;
    border-right-color: #fff;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  100% {
    width: 100%;
    height: 100%;
    border-top-color: #fff;
    border-right-color: #fff;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes servicesBG {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes testimonialsBG {
  0%, 100% {
    background-color: #111;
  }
  25% {
    background-color: #444;
  }
  50% {
    background-color: #919191;
  }
  75% {
    background-color: #444;
  }
}
@keyframes scifiEntrance {
  0% {
    transform: translateY(250px);
    opacity: 0;
    scale: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(-150px);
    opacity: 1;
    scale: 0.5;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
    scale: 1;
  }
}
.scifi-entrance {
  animation: scifiEntrance 1.5s ease 0s 1 normal forwards;
}

@keyframes scaleRight {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes scaleDown {
  0% {
    transform: scaley(0);
    opacity: 0;
  }
  100% {
    transform: scaley(1);
    opacity: 1;
  }
}
.shrink-in {
  animation: shrinkIn 1s ease 0s 1 normal forwards;
}

.app-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Courier New", Courier, monospace;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: white;
  background: #333;
  background: radial-gradient(circle, rgb(51, 51, 51) 0%, rgb(34, 34, 34) 10%, rgb(0, 0, 0) 100%);
}
.app-container .main-content-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
}

.desktop-nav-container {
  display: none;
}
@media (min-width: 768px) {
  .desktop-nav-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 10vh;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
  }
}
.desktop-nav-container .desktop-logo-container .logo:hover {
  color: #00ff00;
  text-decoration: underline;
}
.desktop-nav-container .desktop-nav-links-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
.desktop-nav-container .desktop-nav-links-container .desktop-nav-link {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav-container .desktop-nav-links-container .desktop-nav-link:hover {
  text-decoration: underline;
  color: #00ff00;
}
.desktop-nav-container .desktop-nav-link.active {
  color: #00ff00;
  text-decoration: underline;
}

.mobile-nav-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: black;
  z-index: 100;
}
@media (min-width: 768px) {
  .mobile-nav-container {
    display: none;
  }
}
.mobile-nav-container .mobile-nav-logo-container .logo {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
}
.mobile-nav-container .mobile-nav-logo-container .logo:hover {
  text-decoration: underline;
  color: #00ff00;
}
.mobile-nav-container .menu-button-container {
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-nav-container .menu-button-container .hamburger-button,
.mobile-nav-container .menu-button-container .close-button {
  width: 24px;
  height: 24px;
}
.mobile-nav-container .mobile-nav-links-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background: black;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  justify-content: space-evenly;
}
.mobile-nav-container .mobile-nav-links-container .mobile-nav-link {
  font-weight: 900;
  color: white;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
}
.mobile-nav-container .mobile-nav-links-container .mobile-nav-link:hover {
  color: #00ff00;
  text-decoration: none;
}

.logo {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
}
.logo:hover {
  text-decoration: underline;
  color: #00ff00;
}

.footer-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.footer-container .footer-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.footer-container .footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-container .footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.footer-container .footer-bg > * {
  position: relative;
  z-index: 2;
}
.footer-container > * {
  position: relative;
  z-index: 2;
}
.footer-container .footer-column {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .footer-container .footer-column {
    max-width: 33%;
  }
}
.footer-container .footer-column .copyright-text {
  text-align: center;
}
.footer-container .footer-column .footer-logo a {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
}
.footer-container .footer-column .footer-logo a:hover, .footer-container .footer-column .footer-logo a:focus {
  color: #00ff00;
  text-decoration: underline;
}
.footer-container .footer-column .footer-links-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer-container .footer-column .footer-links-container .footer-site-link {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
}
.footer-container .footer-column .footer-links-container .footer-site-link:hover, .footer-container .footer-column .footer-links-container .footer-site-link:focus {
  color: #00ff00;
  text-decoration: underline;
}
.footer-container .footer-column .footer-social-links-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-container .footer-column .footer-social-links-container .footer-social-link {
  height: 3rem;
  width: 3rem;
  transition: all 0.5s ease-in-out;
}
.footer-container .footer-column .footer-social-links-container .footer-social-link img {
  width: 100%;
  height: 100%;
}
.footer-container .footer-column .footer-social-links-container .footer-social-link:hover, .footer-container .footer-column .footer-social-links-container .footer-social-link:focus {
  transform: translateY(-10px);
}

.homepage-hero-section-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  min-height: 80vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
@media (min-width: 768px) {
  .homepage-hero-section-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    height: 80vh;
  }
}
.homepage-hero-section-container .mobile-hero-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.homepage-hero-section-container .mobile-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.homepage-hero-section-container .mobile-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.homepage-hero-section-container .mobile-hero-bg > * {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .homepage-hero-section-container .mobile-hero-bg {
    display: none;
  }
}
.homepage-hero-section-container .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .homepage-hero-section-container .hero-bg {
    display: block;
  }
}
.homepage-hero-section-container .hero-bg .hero-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.homepage-hero-section-container .text-container {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}
@media (min-width: 768px) {
  .homepage-hero-section-container .text-container {
    max-width: none;
    width: auto;
    flex: 0 1 calc((100% - 2rem) * 0.45);
    min-width: 0;
    box-sizing: border-box;
  }
}
.homepage-hero-section-container .text-container .heading {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
}
.homepage-hero-section-container .text-container .call-to-action-container {
  display: flex;
  padding: 2rem 0;
  gap: 2rem;
  align-self: flex-start;
}
.homepage-hero-section-container .text-container .call-to-action-container .call-to-action-button-contact {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: #00ff00;
  text-decoration: none;
  padding: 0.75em 1em;
  border: 1px solid #00ff00;
  border-radius: 1rem;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.homepage-hero-section-container .text-container .call-to-action-container .call-to-action-button-contact:hover, .homepage-hero-section-container .text-container .call-to-action-container .call-to-action-button-contact:focus {
  background-color: #00ff00;
  color: #111;
}
.homepage-hero-section-container .text-container .call-to-action-container .call-to-action-button-blog {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: #00ff00;
  text-decoration: none;
  padding: 0.75em 1em;
  border: 1px solid #00ff00;
  border-radius: 1rem;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.homepage-hero-section-container .text-container .call-to-action-container .call-to-action-button-blog:hover, .homepage-hero-section-container .text-container .call-to-action-container .call-to-action-button-blog:focus {
  background-color: #00ff00;
  color: #111;
}
.homepage-hero-section-container .portrait-container {
  display: none;
}
@media (min-width: 768px) {
  .homepage-hero-section-container .portrait-container {
    display: block;
    max-width: none;
    width: auto;
    flex: 0 1 calc((100% - 2rem) * 0.55);
    min-width: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
  }
  .homepage-hero-section-container .portrait-container .hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
}

.homepage-about-section-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
.homepage-about-section-container .homepage-about-section-left-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .homepage-about-section-container .homepage-about-section-left-section {
    width: 45%;
  }
}
.homepage-about-section-container .homepage-about-section-left-section .heading {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
}
.homepage-about-section-container .homepage-about-section-left-section .homepage-about-section-contact-button {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: #00ff00;
  text-decoration: none;
  padding: 0.75em 1em;
  border: 1px solid #00ff00;
  border-radius: 1rem;
  transition: all 0.5s ease-in-out;
}
.homepage-about-section-container .homepage-about-section-left-section .homepage-about-section-contact-button:hover, .homepage-about-section-container .homepage-about-section-left-section .homepage-about-section-contact-button:focus {
  background-color: #00ff00;
  color: #111;
}
.homepage-about-section-container .homepage-about-section-right-section {
  width: 100%;
}
@media (min-width: 1024px) {
  .homepage-about-section-container .homepage-about-section-right-section {
    width: 45%;
  }
}
.homepage-about-section-container .homepage-about-section-right-section img {
  width: 100%;
  height: auto;
}

.homepage-latest-art-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .homepage-latest-art-container {
    margin-top: 4rem;
  }
}
.homepage-latest-art-container .homepage-latest-art-section-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.homepage-latest-art-container .homepage-latest-art-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.homepage-latest-art-container .homepage-latest-art-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.homepage-latest-art-container .homepage-latest-art-section-bg > * {
  position: relative;
  z-index: 2;
}
.homepage-latest-art-container > * {
  position: relative;
  z-index: 2;
}
.homepage-latest-art-container .homepage-latest-art-header-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 0 2rem;
  gap: 2rem;
  padding-top: 2rem;
}
.homepage-latest-art-container .homepage-latest-art-header-container .heading {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
}
.homepage-latest-art-container .homepage-latest-art-header-container .introduction {
  max-width: 45ch;
  color: #cfcfcf;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
  width: 100%;
  padding: 0 1rem;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: clamp(18rem, 30%, 100%);
  background-color: #111;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 255, 0, 0.25);
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post .homepage-art-post-thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post .homepage-art-post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post .homepage-art-post-title {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post .homepage-art-post-title .homepage-art-post-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post .homepage-art-post-title .homepage-art-post-link:hover, .homepage-latest-art-container .homepage-latest-art-posts-list-container .homepage-art-post .homepage-art-post-title .homepage-art-post-link:focus {
  color: #00ff00;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .homepage-latest-art-container .homepage-art-post {
    flex: 1 1 calc(50% - 2rem);
  }
}
@media (max-width: 600px) {
  .homepage-latest-art-container .homepage-art-post {
    flex: 1 1 100%;
  }
}
.homepage-other-latests-section {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-evenly;
}
.homepage-other-latests-section .homepage-latest-dev-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
  padding: 2rem;
}
@media (min-width: 769px) {
  .homepage-other-latests-section .homepage-latest-dev-container {
    max-width: 45%;
  }
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-header-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 1.5rem;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-header-container .heading {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-header-container .introduction {
  max-width: 45ch;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: clamp(18rem, 30%, 100%);
  background-color: #111;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(34, 209, 255, 0.25);
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post .homepage-dev-post-thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post .homepage-dev-post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post .homepage-dev-post-title {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post .homepage-dev-post-title .homepage-dev-post-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post .homepage-dev-post-title .homepage-dev-post-link:hover, .homepage-other-latests-section .homepage-latest-dev-container .homepage-latest-dev-posts-list-container .homepage-dev-post .homepage-dev-post-title .homepage-dev-post-link:focus {
  color: #00ff00;
  text-decoration: none;
}
@media (max-width: 900px) {
  .homepage-other-latests-section .homepage-latest-dev-container .homepage-dev-post {
    flex: 1 1 calc(50% - 2rem);
  }
}
@media (max-width: 600px) {
  .homepage-other-latests-section .homepage-latest-dev-container .homepage-dev-post {
    flex: 1 1 100%;
  }
}

.portfolio-page-hero-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 40vh;
  justify-content: center;
  align-items: center;
  position: relative;
}
.portfolio-page-hero-container .portfolio-hero-section-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.portfolio-page-hero-container .portfolio-hero-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.portfolio-page-hero-container .portfolio-hero-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.portfolio-page-hero-container .portfolio-hero-section-bg > * {
  position: relative;
  z-index: 2;
}
.portfolio-page-hero-container > * {
  position: relative;
  z-index: 2;
}

.portfolio-page-gateway-cards-section-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
  justify-content: space-evenly;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #111;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  min-width: 280px;
  min-height: 400px;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(34, 209, 255, 0.25);
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .gateway-card-img-container {
  width: 100%;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .gateway-card-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container .gateway-card-title-link {
  text-decoration: none;
  color: white;
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  transition: color 0.2s ease;
  cursor: pointer;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container .gateway-card-title-link h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: inherit;
}
.portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container .gateway-card-title-link:hover, .portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container .gateway-card-title-link:focus {
  color: #00ff00;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container {
    padding: 1rem;
    gap: 1.5rem;
  }
  .portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container {
    padding: 0.5rem;
  }
  .portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container {
    padding: 1rem;
  }
  .portfolio-page-gateway-cards-section-container .portfolio-page-gateway-cards-list-container .gateway-card-container .text-container .gateway-card-title-link h3 {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
.archive-header-section-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 40vh;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem;
}
.archive-header-section-container .archive-header-section-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.archive-header-section-container .archive-header-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.archive-header-section-container .archive-header-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.archive-header-section-container .archive-header-section-bg > * {
  position: relative;
  z-index: 2;
}
.archive-header-section-container > * {
  position: relative;
  z-index: 2;
}

h1 {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
}

.archive-posts-grid {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: space-evenly;
  align-items: flex-start;
}
.archive-posts-grid .archive-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #111;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  min-width: 280px;
  min-height: 500px;
}
.archive-posts-grid .archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(34, 209, 255, 0.25);
}
.archive-posts-grid .archive-card .archive-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.archive-posts-grid .archive-card .archive-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.archive-posts-grid .archive-card .archive-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}
.archive-posts-grid .archive-card .archive-card-content .archive-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  line-height: 1.4;
}
.archive-posts-grid .archive-card .archive-card-content .archive-card-title .archive-card-title-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-block;
}
.archive-posts-grid .archive-card .archive-card-content .archive-card-title .archive-card-title-link:hover, .archive-posts-grid .archive-card .archive-card-content .archive-card-title .archive-card-title-link:focus {
  color: #00ff00;
  text-decoration: underline;
}
.archive-posts-grid .archive-card .archive-card-content .archive-card-excerpt {
  margin: 0;
  font-weight: 400;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive-posts-grid .archive-card .archive-card-meta {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: auto;
  flex-shrink: 0;
}
.archive-posts-grid .archive-card .archive-card-meta .archive-card-date,
.archive-posts-grid .archive-card .archive-card-meta .archive-card-categories,
.archive-posts-grid .archive-card .archive-card-meta .archive-card-tags {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.4;
}
.archive-posts-grid .archive-card .archive-card-meta .archive-card-date {
  opacity: 0.5;
}
.archive-posts-grid .archive-card .archive-card-meta .archive-card-categories,
.archive-posts-grid .archive-card .archive-card-meta .archive-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}
.archive-posts-grid .archive-card .archive-card-meta .archive-card-categories a,
.archive-posts-grid .archive-card .archive-card-meta .archive-card-tags a {
  color: white;
  opacity: 0.5;
  text-decoration: none;
}
.archive-posts-grid .archive-card .archive-card-meta .archive-card-categories a:hover, .archive-posts-grid .archive-card .archive-card-meta .archive-card-categories a:focus,
.archive-posts-grid .archive-card .archive-card-meta .archive-card-tags a:hover,
.archive-posts-grid .archive-card .archive-card-meta .archive-card-tags a:focus {
  opacity: 1;
  color: #00ff00;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .archive-posts-grid {
    padding: 1rem;
    gap: 1.5rem;
  }
  .archive-posts-grid .archive-card {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .archive-posts-grid {
    padding: 0.5rem;
  }
  .archive-posts-grid .archive-card .archive-card-content {
    padding: 1rem;
  }
  .archive-posts-grid .archive-card .archive-card-content .archive-card-title {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .archive-posts-grid .archive-card .archive-card-content .archive-card-excerpt {
    font-size: 0.9rem;
  }
}
.page-header-section-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 30vh;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-header-section-container .page-header-section-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.page-header-section-container .page-header-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-header-section-container .page-header-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.page-header-section-container .page-header-section-bg > * {
  position: relative;
  z-index: 2;
}
.page-header-section-container > * {
  position: relative;
  z-index: 2;
}
.page-header-section-container .page-title {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  color: white;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.page-header-section-container .page-intro {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  max-width: 800px;
}

.page-content-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.page-content-container .page-article .page-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #eee;
}
.page-content-container .page-article .page-content p {
  margin-bottom: 1.5rem;
}
.page-content-container .page-article .page-content a {
  color: white;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.page-content-container .page-article .page-content a:hover {
  color: #00ff00;
}
.page-content-container .page-article .page-content h2,
.page-content-container .page-article .page-content h3,
.page-content-container .page-article .page-content h4,
.page-content-container .page-article .page-content h5 {
  color: white;
  margin-top: 2rem;
}

.error-404-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  height: 80vh;
  color: white;
  padding: 2rem;
  overflow: hidden;
}
.error-404-container .error-404-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.error-404-container .error-404-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.error-404-container .error-404-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.error-404-container .error-404-bg > * {
  position: relative;
  z-index: 2;
}
.error-404-container .error-404-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.error-404-container .error-404-title {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
  font-size: clamp(5rem, 10vw, 8rem);
  color: #00ff00;
  margin-bottom: 0.5rem;
}
.error-404-container .error-404-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ccc;
}
.error-404-container .error-404-text {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 2rem;
}
.error-404-container .error-404-home-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #00ff00;
  border-radius: 0.5rem;
  color: #00ff00;
  text-decoration: none;
  transition: all 0.2s ease;
}
.error-404-container .error-404-home-link:hover {
  background-color: white;
  color: #111;
  box-shadow: 0 0 20px #00ff00;
}

.single-post-header-section-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40vh;
  text-align: center;
  color: white;
  padding: 2rem;
  overflow: hidden;
}
.single-post-header-section-container .single-post-header-bg {
  position: absolute;
  overflow: hidden;
  height: 100%; /* fills parent */
  width: 100%;
}
.single-post-header-section-container .single-post-header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(34, 255, 0, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.single-post-header-section-container .single-post-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(rgba(34, 255, 0, 0.15), rgba(34, 255, 0, 0.15) 1px, transparent 2px);
  animation: crt-flicker 6s infinite alternate;
  pointer-events: none;
}
@keyframes crt-flicker {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.5;
  }
}
.single-post-header-section-container .single-post-header-bg > * {
  position: relative;
  z-index: 2;
}
.single-post-header-section-container .single-post-title {
  position: relative;
  z-index: 2;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
}
.single-post-header-section-container .single-post-excerpt {
  position: relative;
  z-index: 2;
  color: white;
  margin-top: 0.5rem;
  max-width: 600px;
}
.single-post-header-section-container .single-post-meta {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.post-share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.post-share-buttons.top {
  margin-top: 20px;
}
.post-share-buttons.bottom {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.post-share-buttons .share-label {
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin-right: 8px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
  border-color: #00ff00;
}
.share-button.twitter:hover {
  background-color: #1DA1F2;
  border-color: #1DA1F2;
  color: white;
}
.share-button.facebook:hover {
  background-color: #1877F2;
  border-color: #1877F2;
  color: white;
}
.share-button.linkedin:hover {
  background-color: #0A66C2;
  border-color: #0A66C2;
  color: white;
}
.share-button.email:hover {
  background-color: #EA4335;
  border-color: #EA4335;
  color: white;
}
.share-button.copy-link:hover {
  background-color: #00ff00;
  border-color: #00ff00;
  color: #000;
}
.share-button svg {
  width: 20px;
  height: 20px;
}

.single-post-content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: #eee;
  line-height: 1.8;
  font-size: 1.05rem;
}
.single-post-content-container .single-post-featured-img {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
.single-post-content-container .single-post-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}
.single-post-content-container .single-post-content {
  margin-bottom: 3rem;
}
.single-post-content-container .single-post-content a {
  color: white;
  text-decoration: underline;
}
.single-post-content-container .single-post-content a:hover {
  color: #00ff00;
}
.single-post-content-container .single-post-content h2,
.single-post-content-container .single-post-content h3,
.single-post-content-container .single-post-content h4 {
  margin: 2rem 1rem;
  color: white;
  font-family: "Alfa Slab One", serif;
}
.single-post-content-container p {
  margin: 1.5rem 0;
  line-height: 2;
}
.single-post-content-container .single-post-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.single-post-content-container .single-post-footer a {
  color: #ccc;
}
.single-post-content-container .single-post-footer a:hover {
  color: #00ff00;
}
.single-post-content-container .post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  font-weight: 600;
}
.single-post-content-container .post-navigation a {
  color: #00ff00;
  text-decoration: none;
}
.single-post-content-container .post-navigation a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .post-share-buttons {
    gap: 10px;
  }
  .share-button {
    width: 36px;
    height: 36px;
  }
  .share-button svg {
    width: 18px;
    height: 18px;
  }
}
/* Comments section */
.comments-area {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #111;
  border-radius: 1rem;
  color: #ddd; /* Comment form */
}
.comments-area .comments-title {
  font-family: "Alfa Slab One", serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}
.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comments-area .comment-list .comment {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #1a1a1a;
  border-radius: 0.5rem;
  transition: transform 0.2s ease;
}
.comments-area .comment-list .comment:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 209, 255, 0.2);
}
.comments-area .comment-list .comment .comment-body .comment-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.comments-area .comment-list .comment .comment-body .comment-meta .comment-author {
  font-weight: 600;
  color: #fff;
}
.comments-area .comment-list .comment .comment-body .comment-meta .comment-time {
  margin-left: 0.5rem;
}
.comments-area .comment-list .comment .comment-body .comment-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}
.comments-area .comment-respond {
  margin-top: 3rem;
}
.comments-area .comment-respond .comment-reply-title {
  font-family: "Alfa Slab One", serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.comments-area .comment-respond .comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comments-area .comment-respond .comment-form textarea, .comments-area .comment-respond .comment-form input[type=text], .comments-area .comment-respond .comment-form input[type=email] {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #222;
  color: #ddd;
  font-family: inherit;
  font-size: 1rem;
}
.comments-area .comment-respond .comment-form input[type=submit] {
  background: transparent;
  color: #00ff00;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 1px solid #00ff00;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: "Alfa Slab One", serif;
  letter-spacing: 2px;
}
.comments-area .comment-respond .comment-form input[type=submit]:hover {
  background-color: white;
}/*# sourceMappingURL=styles.css.map */