/* Base styles for SLAY: The Fashion Royale landing page */

/* Reset and global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d13;
  color: #e0e0e7;
  scroll-behavior: smooth;
}

a {
  color: #00ff8a;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #ff007f;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Section styles */
.section {
  padding: 4rem 0;
  position: relative;
}
.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #00ff8a, #ff007f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section p {
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #cfcfd8;
}

/* Hero Section */
/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center center;
}
/* Pseudo-element to apply filters to the background image */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  filter: brightness(0.8) blur(2px);
  z-index: -2;
}
/* Overlay to add gradient shading for contrast */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13,13,19,0.2) 0%, rgba(13,13,19,0.8) 100%);
  z-index: -1;
}
.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(13, 13, 19, 0.6);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}
.tagline {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #00ff8a, #ff007f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.subhead {
  font-size: 1.3rem;
  color: #cfcfd8;
  margin-bottom: 2rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.waitlist-form input[type="email"],
.waitlist-form input[type="text"] {
  padding: 0.75rem 1rem;
  border: 2px solid #ff007f;
  background-color: transparent;
  color: #fff;
  border-radius: 5px;
  flex: 1 1 250px;
  outline: none;
  transition: border-color 0.2s ease;
}
.waitlist-form input[type="email"]:focus,
.waitlist-form input[type="text"]:focus {
  border-color: #00ff8a;
}
.waitlist-form .creator-toggle {
  display: flex;
  align-items: center;
  color: #cfcfd8;
  font-size: 0.9rem;
}
.waitlist-form .creator-toggle input {
  margin-right: 0.5rem;
}
.waitlist-form .cta-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(90deg, #ff007f, #00ff8a);
  color: #0d0d13;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 auto;
}
.waitlist-form .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 255, 138, 0.4);
}

/* Grid utilities */
.grid {
  display: grid;
  gap: 2rem;
}
.four-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.three-col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.five-col {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.feature h3,
.mode h3,
.creator-feature h3,
.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ff8a;
}
.feature p,
.mode p,
.creator-feature p,
.team-member p {
  font-size: 1rem;
  color: #cfcfd8;
  line-height: 1.5;
}

/* Modes specific styling */
.modes-list .mode {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* Provenance section emphasised text */
#provenance strong {
  color: #ff007f;
}

/* Join section */
.join .social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.join .social-links .social {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #00ff8a;
  transition: background-color 0.2s ease;
}
.join .social-links .social:hover {
  background-color: rgba(255, 0, 127, 0.3);
}

/* Community section styling */
.community ul {
  list-style: none;
  margin-top: 1rem;
}
.community li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #cfcfd8;
  position: relative;
  padding-left: 1.5rem;
}
.community li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #ff007f;
}

/* Team section */
.team-grid {
  margin-top: 2rem;
  gap: 1.5rem;
}
.team-member img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.team-member h3 {
  font-size: 1.1rem;
  color: #00ff8a;
}
.team-member p {
  font-size: 0.9rem;
  color: #cfcfd8;
}
.support-line {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #cfcfd8;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #07070a;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-content {
  text-align: center;
}
.footer-links {
  margin-bottom: 1rem;
}
.footer-link {
  margin: 0 0.5rem;
  color: #00ff8a;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #ff007f;
}
.legal {
  font-size: 0.8rem;
  color: #81838f;
  margin-bottom: 0.5rem;
}
.legal a {
  color: #00ff8a;
  margin: 0 0.25rem;
  font-weight: 400;
}
.legal a:hover {
  color: #ff007f;
}
.powered {
  font-size: 0.8rem;
  color: #81838f;
}

/* Accessibility helpers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tagline {
    font-size: 2.5rem;
  }
  .section h2 {
    font-size: 2rem;
  }
}

/* Subtle image hover effect */
.feature img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 1rem auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.feature img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* Parallax effect for hero background */
#hero {
  background-attachment: fixed;
}




h2 {
  text-transform: uppercase;
}

h2 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}
