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

:root {
  --bg-cream: rgb(249, 219, 189);
  --van-dyke: #484041;
  --flame: #ec4e20;
  --green-yellow: #b5f44a;
  --hot-pink: rgb(252, 96, 168);
  --text-primary: #484041;
  --text-secondary: #484041cc;
  --border: #48404133;
}

body {
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  color: #484041;
  background-color: rgb(249, 219, 189);
  overflow-x: hidden;
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: #484041;
  border-bottom: 1px solid #48404133;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-family: "Monofett", monospace;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 2px;
  color: var(--green-yellow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: rgb(249, 219, 189);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green-yellow);
}

/* Main Content */
main {
  margin-top: 60px;
}

.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
}

h1 {
  font-size: 4rem;
  font-weight: normal;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
  color: var(--flame);
  text-transform: uppercase;
}

h2 {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: var(--flame);
  text-transform: uppercase;
}

.contact h2 {
  color: var(--green-yellow);
}

p {
  margin-bottom: 1rem;
  color: var(--text-primary);
  max-width: 600px;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  background: rgb(249, 219, 189);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-image img {
  width: 150%;
  filter: contrast(1.05);
  border: 1px solid var(--border);
  transform-origin: center;
}

/* Artists Section */
.artists {
  background: rgb(249, 219, 189);
  border-top: 1px solid #48404133;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.artist {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--border);
  transition: color 0.2s ease;
  text-decoration: none;
  display: block;
}

.artist:hover {
  color: var(--hot-pink);
  text-decoration: none;
}

/* Space Section */
.space-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.space-text strong {
  color: var(--hot-pink);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gear-list {
  list-style: none;
  margin: 1rem 0;
}

.gear-list li {
  color: var(--text-secondary);
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.gear-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hot-pink);
}

.space-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.space-img {
  width: 400px;
  height: 280px;
  object-fit: cover;
  filter: contrast(1.05);
  border: 3px solid var(--van-dyke);
  box-shadow: 0 6px 20px rgba(252, 96, 168, 0.1);
}

/* Contact Section */
.contact {
  background: #484041;
  text-align: center;
  padding: 6rem 0;
}

.contact-subtitle {
  color: rgb(249, 219, 189);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: none;
}

.contact-email {
  color: var(--green-yellow);
  text-decoration: none;
  font-size: 1.8rem;
  letter-spacing: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-email:hover {
  border-bottom-color: var(--hot-pink);
}

/* Footer */

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }

  .container {
    padding: 0 2rem;
    text-align: center;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    text-align: center;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
  }

  p {
    max-width: none;
    text-align: center;
    font-size: 1.1rem;
  }

  .hero-content,
  .space-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .hero-image img {
    width: 100% !important;
    max-width: 100%;
    object-fit: cover;
  }

  .space-text {
    text-align: center;
  }

  .gear-list {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
  }

  .nav-links {
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .artist-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .artist {
    font-size: 1.1rem;
  }

  .space-images {
    margin-top: 2rem;
  }

  .space-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    transform: none !important;
  }

  .space-img:last-child {
    margin-top: -10px;
    margin-left: 0;
  }

  .contact-email {
    font-size: 1.4rem;
    word-break: break-all;
  }

  .contact-subtitle {
    font-size: 1.2rem;
  }
}

/* Extra small mobile (iPhone SE) */
@media (max-width: 375px) {
  .nav-container {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links a {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .contact-email {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }

  h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
}
