﻿:root {
  --bg: #000000;
  --bg-2: #000000;
  --card: #151515;
  --card-hover: #1c1c1c;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --gold: #ffcb00;
  --gold-soft: #ffe066;
  --gold-hover: #e6b800;
  --accent: var(--gold);
  --accent-2: var(--gold-soft);
  --accent-hover: var(--gold-hover);
  --radius: 10px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Rubik", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: var(--font-body);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;
}

.site-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.site-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-avatar {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.site-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--gold);
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border: none;
  border-radius: 4px;
  background: var(--gold);
  color: #0c0c0c;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover { background: var(--gold-hover); color: #0c0c0c; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 25px;
  border: 1px solid var(--text);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Homepage: hero ---- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 16px 64px;
  text-align: center;
}

.hero-photo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.hero-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.7;
  animation: rotate-ring 14s linear infinite;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-ring { animation: none; }
}

.hero-photo {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gold);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg);
  background: var(--card);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.hero h1 .grad {
  color: var(--gold);
}

.hero-role {
  margin: -6px 0 0;
  font-family: "Dancing Script", var(--font-head);
  font-style: normal;
  color: var(--gold);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-role sup {
  font-size: 0.55em;
  font-style: normal;
  font-family: var(--font-head);
}

.hero-tagline {
  margin: -18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.social-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 4px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.06);
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon.youtube { background: #ff0000; }

.social-icon.tiktok { background: #010101; }

.social-icon.facebook { background: #1877f2; }

.social-icon.whatsapp { background: #25d366; }

.site-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.site-link-box {
  padding: 16px 32px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--bg);
  box-shadow: 5px 5px 0 var(--gold);
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.site-link-box:hover {
  color: var(--gold);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--gold);
}

.site-link-box:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--gold);
}

@media (max-width: 640px) {
  .hero { padding: 56px 12px 44px; }
  .hero h1 { font-size: 2.2rem; }
}

/* ---- Promo popup ---- */

.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.promo-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(255, 203, 0, 0.08), 0 30px 70px rgba(0, 0, 0, 0.6);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s ease;
}

.promo-overlay.show .promo-modal {
  transform: translateY(0) scale(1);
}

.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.promo-close:hover { color: var(--gold); border-color: var(--gold); }

.promo-icon {
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.promo-tag {
  width: 100%;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.promo-title {
  width: 100%;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.promo-desc {
  width: 100%;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.promo-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ---- Section heading ---- */

.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-heading {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 26px;
}

/* ---- Featured project ---- */

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.project-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.project-icon {
  font-size: 1.6rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0c0c0c;
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.live-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0c0c0c;
}

.project-card h3 {
  font-family: var(--font-head);
  margin: 6px 0 10px;
  font-size: 1.4rem;
}

.project-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ---- Services / Skills ---- */

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

.skill-group {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.skill-group:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.skill-group h4 {
  margin: 0 0 12px;
  font-size: 1.02rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
}

.skill-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-group li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .section-heading { font-size: 1.5rem; }
}
