/*!
Theme Name: Rebel Syndicate - Power to the People
Theme URI: https://rebelsyndicate.org
Description: A bold, Neo-Brutalist activism-inspired theme for inner city young adult clothing brands. High contrast, unapologetic design with neon accents.
Version: 1.0.0
Author: Rebel Syndicate
Author URI: https://rebelsyndicate.org
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rebel-syndicate
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ========================================
   REBEL SYNDICATE - NEO-BRUTALIST THEME
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap');

/* ========================================
   ROOT VARIABLES - NEO-BRUTALIST PALETTE
   ======================================== */

:root {
  --primary-yellow: #FFFF00;
  --primary-pink: #FF006E;
  --primary-green: #00FF41;
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #CCCCCC;
  --gray-dark: #333333;
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Mono', monospace;
  
  --transition: all 0.3s ease;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 900;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-yellow);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 4px solid var(--black);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.navbar-menu a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-menu a:hover {
  color: var(--primary-yellow);
}

.navbar-cta {
  background-color: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--black);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.navbar-cta:hover {
  background-color: var(--primary-yellow);
  color: var(--black);
  border-color: var(--primary-yellow);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  gap: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background-color: var(--white);
  position: relative;
  z-index: 10;
}

.hero-icon {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-yellow);
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-yellow);
  color: var(--black);
  border-color: var(--primary-yellow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--black);
}

.btn-secondary:hover {
  background-color: var(--black);
  color: var(--white);
}

.hero-image {
  background-size: cover;
  background-position: center;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary-yellow);
  transform: skewY(-2deg);
  transform-origin: left;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ========================================
   MISSION SECTION
   ======================================== */

.mission {
  background-color: var(--black);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mission-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: 400px 400px;
  z-index: 1;
}

.mission-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.mission-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mission-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  border-left: 4px solid var(--primary-yellow);
  padding-left: 1.5rem;
}

.stat:nth-child(2) {
  border-left-color: var(--primary-pink);
}

.stat:nth-child(3) {
  border-left-color: var(--primary-green);
}

.stat-number {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mission-content {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   COLLECTION SECTION
   ======================================== */

.collection {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.collection-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-yellow);
  opacity: 0.05;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  z-index: 1;
}

.collection-header {
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

.collection-header h2 {
  margin-bottom: 0.5rem;
}

.collection-header p {
  font-size: 1.125rem;
  max-width: 600px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.product-card {
  border: 4px solid var(--black);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:nth-child(2) {
  border-color: var(--primary-pink);
}

.product-card:nth-child(3) {
  border-color: var(--primary-green);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.product-card:hover .product-image::before {
  opacity: 0.4;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-yellow);
  color: var(--black);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 3;
}

.product-card:nth-child(2) .product-overlay {
  background-color: var(--primary-pink);
  color: var(--white);
}

.product-card:nth-child(3) .product-overlay {
  background-color: var(--primary-green);
  color: var(--black);
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-overlay-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.product-overlay-price {
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.product-info {
  padding: 1.5rem;
  background-color: var(--white);
  border-top: 4px solid var(--black);
}

.product-card:nth-child(2) .product-info {
  border-top-color: var(--primary-pink);
}

.product-card:nth-child(3) .product-info {
  border-top-color: var(--primary-green);
}

.product-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-btn {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: var(--transition);
}

.product-card:nth-child(2) .product-btn:hover {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--white);
}

.product-card:nth-child(3) .product-btn:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--black);
}

.product-btn:hover {
  background-color: var(--primary-yellow);
  color: var(--black);
  border-color: var(--primary-yellow);
}

.collection-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

.collection-cta .btn {
  border-width: 4px;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   WHY US SECTION
   ======================================== */

.why-us {
  background-color: var(--black);
  color: var(--white);
  padding: 5rem 0;
}

.why-us h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-us-card {
  border-left: 4px solid var(--primary-yellow);
  padding-left: 2rem;
}

.why-us-card:nth-child(2) {
  border-left-color: var(--primary-pink);
}

.why-us-card:nth-child(3) {
  border-left-color: var(--primary-green);
}

.why-us-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-yellow);
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--black);
}

.why-us-card:nth-child(2) .why-us-icon {
  background-color: var(--primary-pink);
  color: var(--white);
}

.why-us-card:nth-child(3) .why-us-icon {
  background-color: var(--primary-green);
  color: var(--black);
}

.why-us-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.why-us-card p {
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter {
  background-color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-size: 300px 300px;
  z-index: 1;
}

.newsletter-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.newsletter-content h2 {
  margin-bottom: 1.5rem;
}

.newsletter-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border: 4px solid var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-yellow);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background-color: var(--black);
  color: var(--white);
  border: 4px solid var(--black);
  font-family: var(--font-display);
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 900;
}

.newsletter-form button:hover {
  background-color: var(--primary-yellow);
  color: var(--black);
  border-color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: var(--black);
  color: var(--white);
  border-top: 4px solid var(--primary-yellow);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  font-size: 0.875rem;
}

.footer-section a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  border-top: 2px solid #555;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .navbar-menu {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }
}
