/*
Theme Name: WAMGOS - Dark Korean Culture
Theme URI: https://wamgos.fr
Description: E-commerce de culture coréenne - True Crime, K-Drama, Collectibles
Version: 1.0.0
Author: WAMGOS
Author URI: https://wamgos.fr
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wamgos
Domain Path: /languages
*/

/* ==================== RESET & VARIABLES ==================== */
:root {
  --primary-color: #ff0000;
  --dark-bg: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --accent-red: #ff0000;
  --accent-grey: #333333;
  --font-main: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== HEADER/NAV ==================== */
.wamgos-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wamgos-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-main);
}

.wamgos-nav {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.wamgos-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.wamgos-nav a:hover {
  color: var(--accent-red);
}

.wamgos-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.wamgos-nav a:hover::after {
  width: 100%;
}

.wamgos-cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
}

.wamgos-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

/* ==================== HERO SECTION ==================== */
.wamgos-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/><feColorMatrix in="noise" type="saturate" values="0"/></filter></defs><rect width="1200" height="600" fill="%23000000" filter="url(%23noise)" opacity="0.05"/></svg>');
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  text-align: center;
  padding: 4rem 2rem;
}

.wamgos-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.wamgos-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.wamgos-hero-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wamgos-hero-label::before,
.wamgos-hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-red);
}

.wamgos-hero-title {
  font-size: 3.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  animation: slideDown 1s ease-out 0.2s backwards;
}

.wamgos-hero-title-red {
  color: var(--accent-red);
}

.wamgos-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.4s backwards;
}

.wamgos-hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.wamgos-btn {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.wamgos-btn-primary {
  background: var(--accent-red);
  color: white;
  border: 2px solid var(--accent-red);
}

.wamgos-btn-primary:hover {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.wamgos-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.wamgos-btn-secondary:hover {
  background: var(--text-primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* ==================== QUOTE SECTION ==================== */
.wamgos-quote {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.wamgos-quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.wamgos-quote-text {
  font-size: 1.8rem;
  font-style: italic;
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.wamgos-quote-author {
  font-size: 0.9rem;
  color: var(--accent-red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ==================== NEWSLETTER SECTION ==================== */
.wamgos-newsletter {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.wamgos-newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.wamgos-newsletter-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wamgos-newsletter-label::before,
.wamgos-newsletter-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-red);
}

.wamgos-newsletter-title {
  font-size: 2.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.wamgos-newsletter-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.wamgos-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wamgos-newsletter-form input {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.wamgos-newsletter-form input::placeholder {
  color: var(--text-secondary);
}

.wamgos-newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.wamgos-newsletter-form button {
  padding: 1rem 2rem;
  background: var(--accent-red);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.wamgos-newsletter-form button:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.wamgos-newsletter-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==================== CATEGORIES SECTION ==================== */
.wamgos-categories {
  padding: 6rem 2rem;
  background: var(--dark-bg);
}

.wamgos-section-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wamgos-section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-red);
}

.wamgos-section-title {
  font-size: 3rem;
  font-family: var(--font-main);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.wamgos-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.wamgos-category-card {
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
  border: 1px solid rgba(255, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wamgos-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.wamgos-category-card:hover::before {
  left: 100%;
}

.wamgos-category-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.wamgos-category-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.wamgos-category-title {
  font-size: 1.8rem;
  font-family: var(--font-main);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wamgos-category-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.wamgos-category-label {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wamgos-category-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wamgos-category-link {
  color: var(--accent-red);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.wamgos-category-link:hover {
  gap: 1rem;
}

/* ==================== ARTICLES SECTION ==================== */
.wamgos-articles {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.wamgos-articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.wamgos-articles-header-left h2 {
  font-size: 3rem;
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.wamgos-articles-all-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.wamgos-articles-all-link:hover {
  color: var(--accent-red);
}

.wamgos-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.wamgos-article-card {
  background: rgba(51, 51, 51, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.wamgos-article-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
}

.wamgos-article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wamgos-article-card:hover .wamgos-article-image {
  transform: scale(1.05);
}

.wamgos-article-content {
  padding: 1.5rem;
}

.wamgos-article-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.wamgos-article-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.wamgos-article-title {
  font-size: 1.3rem;
  font-family: var(--font-main);
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.wamgos-article-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.wamgos-article-link {
  color: var(--accent-red);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.wamgos-article-link:hover {
  gap: 1rem;
}

/* ==================== SHOP BANNER ==================== */
.wamgos-shop-banner {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
  text-align: center;
  border: 1px solid rgba(255, 0, 0, 0.1);
  margin: 3rem 2rem;
}

.wamgos-shop-banner-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wamgos-shop-banner-btn {
  padding: 1rem 2.5rem;
  background: var(--accent-red);
  color: white;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wamgos-shop-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* ==================== FOOTER ==================== */
.wamgos-footer {
  background: var(--dark-secondary);
  border-top: 1px solid rgba(255, 0, 0, 0.1);
  padding: 4rem 2rem 2rem;
}

.wamgos-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wamgos-footer-section h3 {
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.wamgos-footer-section ul {
  list-style: none;
}

.wamgos-footer-section ul li {
  margin-bottom: 0.8rem;
}

.wamgos-footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.wamgos-footer-section a:hover {
  color: var(--accent-red);
}

.wamgos-footer-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.wamgos-footer-tagline {
  color: var(--accent-red);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.wamgos-footer-bottom {
  border-top: 1px solid rgba(255, 0, 0, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.wamgos-footer-copy {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.wamgos-footer-socials {
  display: flex;
  gap: 1.5rem;
}

.wamgos-footer-socials a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.wamgos-footer-socials a:hover {
  color: var(--accent-red);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .wamgos-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .wamgos-nav {
    display: none;
  }

  .wamgos-hero {
    margin-top: 0;
    padding: 2rem 1rem;
    min-height: auto;
    padding-top: 100px;
  }

  .wamgos-hero-title {
    font-size: 2rem;
  }

  .wamgos-hero-subtitle {
    font-size: 1rem;
  }

  .wamgos-section-title {
    font-size: 2rem;
  }

  .wamgos-categories-grid {
    grid-template-columns: 1fr;
  }

  .wamgos-newsletter-form {
    flex-direction: column;
  }

  .wamgos-footer-bottom {
    flex-direction: column;
  }
}
