/* ============================================
   style.css — Global Styles & CSS Variables
   Nihon Studio
   ============================================ */

/* ---------- CSS Variables (Tema Warna) ---------- */
:root {
  --color-primary: #F28C00;       /* Oranye utama */
  --color-primary-light: #FFB347; /* Oranye muda */
  --color-primary-dark: #C97000;  /* Oranye gelap */
  --color-bg: #FFFDF7;            /* Background putih hangat */
  --color-bg-section: #FFF4E0;    /* Background section kuning muda */
  --color-text: #2D2D2D;          /* Teks utama */
  --color-text-muted: #666666;    /* Teks sekunder */
  --color-white: #FFFFFF;
  --color-border: #E8D5B0;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Nunito', sans-serif;

  --radius-card: 16px;
  --radius-btn: 30px;
  --shadow-card: 0 4px 20px rgba(242, 140, 0, 0.15);
  --shadow-hover: 0 8px 32px rgba(242, 140, 0, 0.3);

  --transition: 0.3s ease;
  --navbar-height: 70px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Title ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.section-title.orange {
  color: var(--color-primary);
}

/* ---------- Buttons Global ---------- */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 10px;
}
