/* styles.css — International Society of Haters */

/* TOP BANNER IMAGE STYLES */
.top-banner {
  width: 100%;
  text-align: center;
  background: #000; /* fallback if banner isn't as wide as the screen */
}

.top-banner img {
  width: 100%;
  height: auto;      /* preserves true aspect ratio */
  max-height: 300px; /* prevents giant vertical banner on mobile */
  object-fit: contain; /* shows entire image without cropping */
  display: block;
  margin: 0 auto;
}


/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
/*  background: linear-gradient(135deg, #ff0055, #ff8a00);*/
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.8rem;
}

/* NAV */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: #fff;
  background: rgba(0,0,0,0.25);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

nav a:hover {
  background: rgba(0,0,0,0.45);
}

/* SECTIONS */
.section {
  max-width: 850px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #ff8a00;
  text-shadow: 0 0 6px rgba(255,138,0,0.5);
}

.section p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* FEATURED ROAST */
.featured-box {
  background: #1b1b1b;
  border-left: 5px solid #ff0055;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 1.3rem;
  box-shadow: 0 3px 15px rgba(255,0,85,0.25);
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 4rem;
  padding: 1rem;
  opacity: 0.65;
  font-size: 0.9rem;
}

/* MOBILE FRIENDLY */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  nav a {
    font-size: 1rem;
  }
}
