/* =============================================
   AORI K-BEAUTY — GLOBAL STYLES
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --pink: #FE76A8;
  --orange: #FE6B20;
  --purple: #BE7DF5;
  --yellow: #FFDD7A;
  --white: #FFFFFF;
  --light-bg: #FFF9F6;
  --text-dark: #2D2D2D;
  --text-light: #666666;
  --gradient-main: linear-gradient(135deg, #FE76A8 0%, #FE6B20 40%, #FFDD7A 70%, #BE7DF5 100%);
  --gradient-soft: linear-gradient(135deg, rgba(254,118,168,0.15) 0%, rgba(254,107,32,0.1) 40%, rgba(190,125,245,0.1) 100%);
  --font-display: 'Pacifico', cursive;
  --font-body: 'Inter', sans-serif;
  --header-height: 72px;
  --topbar-height: 38px;
  --container-max: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow-soft: 0 4px 20px rgba(254,118,168,0.15);
  --shadow-hover: 0 8px 30px rgba(254,118,168,0.25);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* --- FOCUS STYLES (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

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

.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;
}

/* Skip to Content */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.3s ease;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
  outline: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.section {
  padding: 56px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--pink);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-light);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.view-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.view-more:hover {
  color: var(--pink);
}

/* --- BUTTONS --- */
.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--gradient-main);
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(254,118,168,0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254,118,168,0.4);
  color: white;
}

.cta-btn-outline {
  display: inline-block;
  padding: 12px 32px;
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.cta-btn-outline:hover {
  background: var(--pink);
  color: white;
}

/* --- SPARKLE ANIMATION --- */
.sparkle {
  display: inline-block;
  color: var(--yellow);
  animation: sparkle-pulse 2s ease-in-out infinite;
}

@keyframes sparkle-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* --- MARQUEE ANIMATION --- */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- MAIN CONTENT WRAPPER --- */
.site-main {
  min-height: 60vh;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 60px;
  }
}
