/* --------------------------------------------------
   Phillips Stickers — Full Site Styling
   Dark Cosmic Premium Theme
   -------------------------------------------------- */

/* ---------- Root Variables ---------- */
:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --card: #111729;
  --text: #f5f5f5;
  --muted: #a0a4b8;
  --accent: #ffb347;
  --accent2: #ff719a;
  --border: 1px solid rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  --transition: 0.25s ease;
}

/* ---------- Global Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b1f3b 0, #050816 55%, #02030a 100%);
  color: var(--text);
  min-height: 100vh;
}

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

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 20px 60px;
}

/* --------------------------------------------------
   NAVBAR
   -------------------------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 22, 0.9);
  border-bottom: var(--border);
  z-index: 50;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffe29f, #ffa99f, #67b26f);
  box-shadow: 0 0 18px rgba(255, 179, 71, 0.7);
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------
   HERO SECTION
   -------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-highlight {
  background: linear-gradient(120deg, #ffe29f, #ffa99f, #ff719a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 460px;
  font-size: 0.98rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(5, 8, 22, 0.7);
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #1b1020;
  box-shadow: 0 12px 30px rgba(255, 113, 154, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 16px 40px rgba(255, 113, 154, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------
   HERO CARD (RIGHT SIDE)
   -------------------------------------------------- */

.hero-card {
  border-radius: 24px;
  background: var(--card);
  padding: 18px;
  box-shadow: var(--shadow);
  border: var(--border);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: var(--border);
}

/* --------------------------------------------------
   NEW STACKED SQUARE IMAGE LAYOUT
   -------------------------------------------------- */

.vertical-sticker-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vertical-sticker-item {
  text-align: center;
}

.vertical-sticker-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #111729;
  box-shadow: var(--shadow);
  border: var(--border);
}

.vertical-sticker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertical-sticker-label {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

/* --------------------------------------------------
   GENERIC SECTIONS + CARDS
   -------------------------------------------------- */

.section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 1.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: var(--border);
  box-shadow: var(--shadow);
}

.card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-tag {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.card-body {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 10px;
}

/* --------------------------------------------------
   VIDEO GRID
   -------------------------------------------------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.video-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
  border: var(--border);
  box-shadow: var(--shadow);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
}

/* --------------------------------------------------
   CONTACT BOX
   -------------------------------------------------- */

.contact-box {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: var(--border);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.contact-highlight {
  color: var(--accent);
  font-weight: 600;
}

/* --------------------------------------------------
   RESPONSIVE
   -------------------------------------------------- */

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  main {
    padding-top: 110px;
  }
}
