/*
Theme Name:  Yumeida
Theme URI:   https://yumeida.co.id
Author:      Yumeida
Author URI:  https://yumeida.co.id
Description: Custom lightweight theme untuk Yumeida – brand sandal & sepatu Indonesia. Dibangun tanpa page builder, cepat, dan mudah dikustomisasi.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License:     GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yumeida
Tags:        woocommerce, e-commerce, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, translation-ready
*/

/* =====================================================
   CSS CUSTOM PROPERTIES — Edit values di sini untuk
   mengubah seluruh tampilan website sekaligus
   ===================================================== */
:root {
  /* === BRAND COLORS === */
  --color-primary:       #D32F2F;   /* Merah utama */
  --color-primary-dark:  #B71C1C;   /* Merah lebih gelap (hover) */
  --color-primary-light: #FFCDD2;   /* Merah muda (aksen) */

  --color-dark:          #1A1A1A;   /* Hitam utama */
  --color-dark-soft:     #2C2C2C;   /* Abu gelap */
  --color-mid:           #555555;   /* Abu tengah */
  --color-light:         #F5F5F5;   /* Background terang */
  --color-white:         #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display:        'Archivo', sans-serif;
  --font-body:           'Archivo', sans-serif;

  --size-xs:   0.75rem;    /* 12px */
  --size-sm:   0.875rem;   /* 14px */
  --size-base: 1rem;       /* 16px */
  --size-md:   1.125rem;   /* 18px */
  --size-lg:   1.5rem;     /* 24px */
  --size-xl:   2rem;       /* 32px */
  --size-2xl:  2.5rem;     /* 40px */
  --size-3xl:  3.5rem;     /* 56px */
  --size-4xl:  5rem;       /* 80px */

  /* === LAYOUT === */
  --container-max:  1280px;
  --container-pad:  1.5rem;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-full:    9999px;

  /* === SPACING === */
  --section-gap:   6rem;
  --section-gap-sm: 3rem;

  /* === SHADOWS === */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);

  /* === TRANSITIONS === */
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-gap) 0; }
.section--sm { padding: var(--section-gap-sm) 0; }
.section--gray { background: var(--color-light); }
.section--dark { background: var(--color-dark); color: var(--color-white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--size-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--color-dark);
}
.section--dark .section-title { color: var(--color-white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(211,47,47,.35);
}
.btn-outline {
  border: 2px solid currentColor;
  color: var(--color-dark);
}
.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-outline-white {
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

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