/* IMPERIAL CROWN APPAREL - NEON BRAND COLORS */
.ic-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.6;
}

.ic-wrapper h1, .ic-wrapper h2, .ic-wrapper h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: #fff;
}

.ic-wrapper section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO - MATCH YOUR NEON LOOK */
.ic-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  position: relative;
  border: 3px solid #FF2E63; /* Neon Pink */
  box-shadow: 0 0 30px rgba(255, 46, 99, 0.4), inset 0 0 30px rgba(8, 217, 214, 0.2); /* Pink + Blue glow */
}
.ic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8,217,214,0.15) 0%, rgba(0,0,0,0.9) 70%);
}
.ic-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.ic-hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  text-transform: uppercase;
  text-shadow: 0 0 10px #08D9D6, 0 0 20px #08D9D6; /* Blue neon glow */
}
.ic-subhead {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.ic-tagline {
  margin-top: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  color: #FF2E63; /* Neon Pink */
}

/* BUTTONS - NEON STYLE */
.ic-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.ic-btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.ic-btn-primary {
  background: #FF2E63; /* Neon Pink */
  color: #000;
  border: 2px solid #FF2E63;
  box-shadow: 0 0 15px rgba(255, 46, 99, 0.6);
}
.ic-btn-primary:hover {
  background: #08D9D6; /* Flip to Blue */
  border-color: #08D9D6;
  box-shadow: 0 0 20px rgba(8, 217, 214, 0.8);
  transform: translateY(-2px);
}
.ic-btn-secondary {
  background: transparent;
  color: #08D9D6; /* Neon Blue */
  border: 2px solid #08D9D6;
  box-shadow: 0 0 15px rgba(8, 217, 214, 0.4);
}
.ic-btn-secondary:hover {
  background: #08D9D6;
  color: #000;
}
.ic-btn-outline {
  border: 2px solid #FF2E63;
  color: #FF2E63;
}
.ic-btn-outline:hover {
  background: #FF2E63;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 46, 99, 0.6);
}

/* COLLECTIONS GRID */
.ic-collections h2, .ic-bestsellers h2, .ic-local h2, .ic-newsletter h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  text-shadow: 0 0 10px rgba(8, 217, 214, 0.5);
}
.ic-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.ic-card {
  text-decoration: none;
  color: #fff;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.ic-card:hover {
  transform: translateY(-6px);
  border-color: #FF2E63;
  box-shadow: 0 0 20px rgba(255, 46, 99, 0.3);
}
.ic-card-img {
  height: 320px;
  background-size: cover;
  background-position: center;
}
.ic-card h3 {
  padding: 20px 20px 8px;
  font-size: 20px;
  color: #08D9D6;
}
.ic-card p {
  padding: 0 20px 20px;
  color: #aaa;
}

/* STORY SECTION */
.ic-story {
  background: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.ic-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ic-story-img {
  height: 500px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 2px solid #08D9D6;
}
.ic-story-content h2 {
  font-size: 36px;
  color: #FF2E63;
}

/* LOCAL + NEWSLETTER */
.ic-local, .ic-newsletter {
  text-align: center;
  background: #000;
  border: 2px solid #08D9D6;
  box-shadow: 0 0 25px rgba(8, 217, 214, 0.2);
  border-radius: 12px;
  margin: 0 20px;
}
.ic-local h2, .ic-newsletter h2 {
  color: #FF2E63;
  text-shadow: 0 0 10px rgba(255, 46, 99, 0.5);
}
.ic-trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  font-weight: 600;
  color: #08D9D6;
}
.ic-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ic-newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px;
  border: 2px solid #08D9D6;
  background: #111;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .ic-wrapper section {
    padding: 60px 20px;
  }
  .ic-story-grid {
    grid-template-columns: 1fr;
  }
  .ic-hero {
    padding: 100px 20px;
  }
} 