/* ===== COLORHEX WEBSITE — RETROUI THEME ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@700;800;900&display=swap');

:root {
  --font-display: 'Outfit', sans-serif;
  --font-main: 'Inter', sans-serif;

  --black: #050505;
  --white: #ffffff;
  --yellow: #FAFF00;
  --green: #22FF94;
  --pink: #FF2DFF;
  --blue: #007AFF;
  --bg: #F0F0F0;
  
  --border: 3px solid var(--black);
  --border-thick: 5px solid var(--black);
  --shadow: 6px 6px 0px var(--black);
  --shadow-hover: 10px 10px 0px var(--black);
  --radius: 12px;
  
  --transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 80px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; line-height: 1; }
h1 { font-size: clamp(3rem, 10vw, 5rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--white);
  border: var(--border-thick);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-4px, -4px);
}

.btn:active {
  box-shadow: 0px 0px 0px var(--black);
  transform: translate(6px, 6px);
}

.btn-primary { background: var(--yellow); }
.btn-secondary { background: var(--pink); color: var(--white); }
.btn-outline { background: var(--white); }

/* ===== NAVIGATION ===== */
nav {
  background: var(--white);
  border-bottom: var(--border-thick);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--black);
}

.nav-logo span { background: var(--yellow); padding: 0 8px; border: var(--border); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.1s;
}
.nav-links a:hover { color: var(--blue); }

/* ===== HERO ===== */
.hero {
  background: var(--green);
  border-bottom: var(--border-thick);
  padding: 100px 0;
  text-align: center;
}

.hero p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ===== FEATURES / CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border: var(--border-thick);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); }

.card h3 { margin-bottom: 16px; font-size: 1.8rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

footer .nav-links { justify-content: center; margin-bottom: 24px; }
footer .nav-links a { color: var(--white); }
footer .nav-links a:hover { color: var(--yellow); }

.copyright { opacity: 0.6; font-size: 0.8rem; margin-top: 40px; }

/* ===== STORE ICONS ===== */
.store-icon { width: 24px; height: 24px; fill: currentColor; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  h1 { font-size: 3rem; }
}
