/* ======== Global ======== */
:root {
  --tan: #e7dfd6;
  --cream: #f8f6f2;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #666;
  --accent: #0056ff;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 70px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--cream);
}

/* ======== Nav ======== */
.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  gap: 6px;
}

.brand-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  margin-left: 20px;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ======== Hero ======== */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--tan);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.profile-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.photo-placeholder {
  width: 150px;
  height: 150px;
  background: #d8d3cd;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.9rem;
}

.name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0 0;
}

.title {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.socials a {
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0 6px;
  text-decoration: none;
}

.intro h1 {
  font-size: 3.5rem;
  margin-bottom: 0.3rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #003bb8;
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  margin-left: 10px;
}

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

.lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ======== Sections ======== */
.section {
  padding: 80px 0;
  background: var(--white);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: calc(100vh - 70px);
}

.section.alt {
  background: var(--tan);
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.muted {
  color: var(--muted);
  margin-bottom: 30px;
}

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

.skill {
  background: var(--cream);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.card.placeholder {
  padding: 40px;
  text-align: center;
  background: #f5f2ed;
  border-radius: 10px;
}

/* ======== Footer ======== */
.footer {
  background: var(--white);
  border-top: 1px solid #eee;
  text-align: center;
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ======== Responsive ======== */
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
