/*
Theme Name: FC Brownsville Child
Theme URI: https://fcbrownsville.com
Description: High-energy child theme for FC Brownsville - Semi-Pro, Academy, Indoor
Author: FC Brownsville Team
Template: twentytwentyfour
Version: 1.0.0
*/

/* CRITICAL VARIABLES - Use These Exactly */
:root {
  --fc-gold: #C9A961;
  --fc-black: #000000;
  --fc-white: #FFFFFF;
  --fc-gold-dark: #A88B4D;
  --fc-gold-light: #E5D4A8;
  --fc-accent-red: #F44336;
  --fc-gray-900: #1A1A1A;
  --fc-gray-700: #404040;
  --fc-gray-300: #D1D1D1;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headings: 'Poppins', 'Inter', sans-serif;
}

/* ENQUEUE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* BASE RESETS */
body {
  font-family: var(--font-primary);
  color: var(--fc-gray-700);
  background-color: var(--fc-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--fc-black);
  font-weight: 700;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background-color: var(--fc-gold);
  color: var(--fc-black);
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--fc-gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--fc-white);
  border: 2px solid var(--fc-gold);
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* PRE-ORDER SPECIFIC STYLES */
.preorder-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--fc-gold);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-gray-700);
  margin-bottom: 16px;
  border-radius: 4px;
}

.size-selector {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.size-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--fc-gray-300);
  background: white;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
}

.size-btn:hover, .size-btn.active {
  border-color: var(--fc-gold);
  background: var(--fc-gold);
  color: black;
}

.order-summary {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--fc-black);
}

.form-group input, .form-group select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 2px solid var(--fc-gray-300);
  border-radius: 4px;
  font-family: var(--font-primary);
}

.form-group input:focus {
  outline: none;
  border-color: var(--fc-gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .preorder-container {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
    order: -1;
  }
}

/* HERO STYLES */
.fc-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(201,169,97,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.fc-hero-content h1 {
  font-size: 52px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.fc-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .fc-hero-content h1 {
    font-size: 32px;
  }
  .fc-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* UTILITY */
.text-gold { color: var(--fc-gold); }
.bg-black { background-color: var(--fc-black); }
.text-white { color: var(--fc-white); }