/* Neo-brutalist base styles */
html {
  background: #2a2a2a;
  font-family: "Berkeley Mono", monospace;
  font-size: 18px;
  line-height: 1.5;
  color: #f5f5f5;
}

body {
  background: 
    repeating-linear-gradient(
      45deg,
      #2a2a2a 0px,
      #2a2a2a 8px,
      #323232 8px,
      #323232 16px
    );
  margin: 0;
  padding: 60px 20px;
  min-height: 100vh;
  position: relative;
}

/* Typography - Bold, in-your-face headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Berkeley Mono", monospace;
  font-weight: 900;
  color: #f5f5f5;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

h1 {
  font-size: 8rem;
  color: rgb(120,180,140);
  text-shadow: 8px 8px 0px #000000;
  margin-bottom: 40px;
  line-height: 0.85;
}

h1 .neo-shrew-title {
  font-size: 8rem;
  color: rgb(185,76,185);
  text-shadow: 8px 8px 0px #000000;
  margin-bottom: 40px;
  line-height: 0.85;
}

h2 {
  font-size: 4rem;
  color: rgb(185,76,185);
  text-shadow: 6px 6px 0px #000000;
  margin-bottom: 30px;
  line-height: 0.9;
}

h3 {
  font-size: 2.5rem;
  color: rgb(255,235,120);
  text-shadow: 4px 4px 0px #000000;
  margin-bottom: 20px;
}

/* Links - Bold and colorful */
a {
  color: rgb(120,180,140);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

a:hover {
  color: #f5f5f5;
  border-bottom-color: rgb(120,180,140);
  background-color: rgb(120,180,140);
  color: #000000;
  padding: 2px 4px;
}

/* Strong emphasis */
b, strong {
  color: rgb(255,235,120);
  font-weight: 900;
  text-shadow: 2px 2px 0px #000000;
}

/* Navigation - Neo-brutalist style */
nav {
  background-color: #1a1a1a;
  border: 6px solid #ffffff;
  box-shadow: 10px 10px 0px 0px #000000;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  background-color: #ffffff;
  color: #000000;
  padding: 12px 20px;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0px 0px #000000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.1s ease;
}

nav a:hover {
  box-shadow: none;
  transform: translate(6px, 6px);
  background-color: rgb(83,125,93);
}

/* Site title - Massive and bold */
.site-title {
  font-size: 3rem;
  color: rgb(120,180,140);
  text-shadow: 6px 6px 0px #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}

/* Icon styling */
.icon {
  width: 36px;
  height: 36px;
  padding: 0px;
}

.icon:hover {
  /* background-color: rgb(120,180,140); */
  filter: none;
}

/* Neo-brutalist blocks */
.block {
  border: 5px solid #ffffff;
  background-color: #1a1a1a;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 8px 8px 0px 0px #000000;
  text-align: left;
}

.block h1 {
  font-size: 1.5em;
  color: #f5f5f5;
  margin-bottom: 10px;
}

/* Utility classes */
.small {
  font-size: 0.8em;
  color: #888888;
}

.wave {
  background: rgb(185,76,185);
  color: #000000;
  padding: 10px;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px 0px #000000;
  text-shadow: none;
  font-weight: bold;
}

.header-margins {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .header-margins {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .header-margins {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (min-width: 1600px) {
  .header-margins {
    margin-left: 16rem;
    margin-right: 16rem;
  }
}

/* Footer - Bold and chunky */
footer {
  margin-top: 60px;
  border-top: 8px solid #ffffff;
  padding-top: 40px;
  text-align: center;
  background-color: #1a1a1a;
  border: 8px solid #ffffff;
  box-shadow: 12px 12px 0px 0px #000000;
  padding: 40px;
}

footer h5 {
  color: rgb(185,76,185);
  font-size: 1.5rem;
  text-shadow: 3px 3px 0px #000000;
  margin-bottom: 20px;
}

footer img {
  border: 4px solid #ffffff;
  box-shadow: 6px 6px 0px 0px #000000;
}

/* Neo-brutalist utility classes */
.neo-title {
  font-size: 3.5rem;
  color: rgb(120,180,140);
  text-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 4px;
}

.neo-btn {
  background-color: #ffffff;
  color: #000000;
  padding: 16px 28px;
  border: 5px solid #000000;
  box-shadow: 8px 8px 0px 0px #000000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.15s ease;
  display: inline-block;
  text-decoration: none;
  font-family: "Berkeley Mono", monospace;
  letter-spacing: 1px;
}

.neo-btn:hover {
  box-shadow: none;
  transform: translate(8px, 8px);
  background-color: rgb(83,125,93);
  color: #000000;
  border-bottom: 5px solid #000000;
  padding: 16px 28px;
}

.neo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.neo-card-primary {
  background-color: rgb(83,125,93);
  border: 8px solid #000000;
  box-shadow: 16px 16px 0px 0px #000000;
  position: relative;
  z-index: 2;
  transform: rotate(-1.5deg);
}

.neo-card {
  background-color: #1a1a1a;
  border: 8px solid #ffffff;
  box-shadow: 12px 12px 0px 0px rgb(139,51,139);
  padding: 40px;
  position: relative;
  z-index: 1;
  transform: rotate(2deg) translateY(-30px);
}

.neo-box {
  background-color: #1a1a1a;
  border: 8px solid #ffffff;
  box-shadow: 14px 14px 0px 0px #000000;
  padding: 60px;
  margin: 80px 0;
  position: relative;
}

.neo-box::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: linear-gradient(45deg, rgb(196,180,98), rgb(139,51,139));
  z-index: -1;
}

.neo-small {
  color: rgb(255,235,120);
  font-size: 0.8rem;
}

.neo-highlight {
  background: rgb(255,235,120);
  color: #000000;
  padding: 4px 8px;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px 0px #000000;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  transform: rotate(-1deg);
  margin: 0 4px;
}

/* Responsive design */
@media (max-width: 968px) {
  .neo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .neo-card-primary {
    transform: rotate(-0.5deg);
    padding: 40px;
  }
  
  .neo-card {
    transform: rotate(0.5deg) translateY(0);
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }
  
  .neo-title {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  nav {
    flex-direction: column;
    gap: 15px;
    padding: 30px;
  }
  
  body {
    padding: 30px 15px;
  }
  
  .neo-box {
    padding: 30px;
    margin: 40px 0;
  }
}
