* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b1a;
  color: #eaeef2;
  scroll-behavior: smooth;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  /* Warm overlay – dark at bottom, warm glow at top */
  background: 
    linear-gradient(to bottom, rgba(11, 11, 26, 0.3) 0%, rgba(11, 11, 26, 0.85) 100%),
    url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimg.freepik.com%2Fpremium-vector%2Fcolorful-beach-background-leaves-summer_961875-131812.jpg&f=1&nofb=1&ipt=b2b5fe898fe01f6b63bb3e407bd686f09a35d3154812812aaf7c6d2133c0eabe');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Avatar – bigger */
.hero-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.15);
  margin-bottom: 1.8rem;
}

/* Name – big white */
.hero h1 {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

/* Subtitle – warm gradient */
.hero .subtitle {
  font-size: 1.2rem;
  margin-top: 0.3rem;
  background: linear-gradient(to right, #f6b26b, #f9cb9c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

/* Location – warm light */
.location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #d4a373;
  margin-top: 0.6rem;
}
.loc-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: #f6b26b;
}

/* Bio – warm light */
.hero .bio {
  max-width: 550px;
  margin: 1.2rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0d6c8;
}

/* ---------- STATS (inside hero) ---------- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 5rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 30px;
}

.stat-item {
  text-align: center;
}
.stat-item .number {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(to right, #f6b26b, #f9cb9c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4a373;
  margin-top: 0.2rem;
}

/* ---------- SECTIONS (Best Qualities & Why Choose Me) ---------- */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #f6b26b;
}

.title-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: #f6b26b;
}

.section-title .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(246, 178, 107, 0.2), transparent);
}

/* Card Grid (Best Qualities) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.8rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(246, 178, 107, 0.06);
}

.card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #f6b26b;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d1c4b0;
}

/* Choose Me Box */
.choose-box {
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: 24px;
}

.choose-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.choose-box ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #d1c4b0;
}

.bullet-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: #f6b26b;
  flex-shrink: 0;
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  color: #d4a373;
}
.scroll-indicator span:last-child {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .stats-row { gap: 1.5rem 2.5rem; padding: 1rem 1.5rem; }
  .stat-item .number { font-size: 2.4rem; }
  .card-grid { grid-template-columns: 1fr; }
  .choose-box { padding: 1.5rem; }
}