@font-face {
  font-family: "radio-grotesk";
  src: url("/fonts/PPRadioGrotesk-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "radio-grotesk";
  src: url("/fonts/PPRadioGrotesk-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "radio-grotesk";
  src: url("/fonts/PPRadioGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "radio-grotesk";
  src: url("/fonts/PPRadioGrotesk-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "radio-grotesk";
  src: url("/fonts/PPRadioGrotesk-Ultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "radio-grotesk";
  src: url("/fonts/PPRadioGrotesk-UltralightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}

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


::selection {
  background-color: #8B4513;
  color: #FFFFFF;
}

:-moz-selection {
  background-color: #8B4513;
  color: #FFFFFF;
}

body {
  font-family: "radio-grotesk", sans-serif;
  font-weight: 400;
  color: #000000;
  background-color: #FFFFFF;
  position: relative;
  overflow-x: hidden;
}

.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 28px;
}

p {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.huge-title {
  font-size: 96px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.inverted {
  background-color: #000000;
  color: #FFFFFF;
  padding: 6px;
}

.site-header {
  border-bottom: 10px solid #000000;
  padding: 0.5rem 2rem;
}

.site-title {
  font-size: 64px;
  font-weight: 900;
}

.site-subtitle {
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
}

.main-nav {
  margin-bottom: 3rem;
  border-bottom: 5px double #000000;
}

.nav-container {
  max-width: 1200px;
  padding: 0 1rem;
}

.nav-items {
  display: flex;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 1rem 2rem;
  color: #000000;
  text-decoration: none;
  font-weight: 900;
  transition: all 0.2s;
}

.nav-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.nav-link-active {
  background-color: #000000;
  color: #FFFFFF;
}

.button-link {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #FFFFFF;
  color: #000000;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid #000000;
  transition: all 0.2s;
}

.button-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.styled-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #FFFFFF;
  color: #000000;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid #000000;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 16px;
}

.styled-button:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.inline-link {
  display: inline;
  background: none;
  border: none;
  color: #000000;
  font-weight: 900;
  font-size: 20px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
}

.inline-link:hover {
  color: #666666;
}

.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.column {
  flex: 1;
  min-width: 300px;
}

.section {
  position: relative;
}

.section-headline {
  font-size: 36px;
  margin-bottom: 1.5rem;
  border-bottom: 5px double #000000;
  font-weight: 900;
}

.headline-box {
  background-color: #000000;
  color: #FFFFFF;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.headline-box h2 {
  margin: 0;
  font-weight: 900;
}

.stat-counter {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  margin-top: 2rem;
}

.stat-label {
  font-size: 16px;
  font-weight: 900;
}

/* Form Styling */
.form-container {
  border: 2px solid #000000;
  padding: 2rem;
  margin-bottom: 3rem;
  background-color: #FFFFFF;
  position: relative;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  position: relative;
}

label {
  display: block;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 12px;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px dashed #000000;
  background-color: #FFFFFF;
  font-family: "radio-grotesk";
  font-size: 14px;
  font-weight: 200;
  font-style: italic;
}

/* File input styling */
input[type="file"] {
  border: 2px dashed #000000;
  padding: 10px;
  background-color: #f8f8f8;
  cursor: pointer;
  font-style: normal;
}

input[type="file"]:hover {
  background-color: #eaeaea;
}

button {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  padding: 1rem 2rem;
  font-family: "radio-grotesk";
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
}

button:hover {
  background-color: #FFFFFF;
  color: #000000;
  outline: 2px solid #000000;
}

.map-container {
  border: 2px solid #000000;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

#map {
  height: 600px;
  width: 100%;
  background-color: #F8F8F8;
  border: 2px solid #000000;
}

#selection-map{
  height: 600px;
  width: 100%;
  background-color: #F8F8F8;
  border: 2px dashed #000000;
}

.map-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
}

.map-info {
  padding: 1rem;
  border: 1px solid #000000;
  background-color: #F8F8F8;
}

.map-legend {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #000000;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.legend-item img {
  margin-right: 0.5rem;
}

.coordinates {
  font-family: monospace;
  font-size: 12px;
}

.wireframe-box {
  border: 2px solid #000000;
  padding: 1rem;
  position: relative;
}

/* .wireframe-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: -1;
  pointer-events: none;
} */

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  border-top: 2px solid #000000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.copyright {
  font-weight: 900;
}

.footer-text {
  text-align: right;
  font-size: 12px;
  font-weight: 200;
}

@media (max-width: 992px) {
  .header-grid, 
  .map-grid,
  .two-column,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-items {
    flex-direction: column;
  }
  
  .nav-link {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .huge-title {
    font-size: 64px;
  }
  
  .site-title {
    font-size: 48px;
  }
}

/* Fullscreen map styles */
body.map-fullscreen-mode {
  overflow: hidden;
}

body.map-fullscreen-mode .grid-background,
body.map-fullscreen-mode .site-header,
body.map-fullscreen-mode .main-nav,
body.map-fullscreen-mode .site-footer {
  display: none;
}

body.map-fullscreen-mode .main-content {
  padding: 0;
  margin: 0;
}

body.map-fullscreen-mode .content-grid {
  max-width: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
}

.fullscreen-map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

.fullscreen-map-container #map {
  width: 100%;
  height: 100%;
  border: none;
}

.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1001;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border: 2px solid #000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-control-button {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s;
}

.map-control-button:hover {
  background-color: #333;
}

.map-stat {
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
}

#poop-counter {
  font-size: 24px;
}