/* ── RESET & BASE ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Instrument+Serif:ital@0;1&family=DM+Sans:wght@300;400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM sans ', san-serif;
  background-color: #FBFBFF;
  color: #041B15;
  line-height: 1.7;
}

/* ── NAVIGATION ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #041B15;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
}

.lang-btn {
  background-color: #9e0059;
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-family: 'Instrument Serif', sans-serif;
}


.lang-btn:hover {
  background-color: #9e0059;
}


/* ── HERO ── */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  background: radial-gradient(circle, #1a1a2e, #041B15, #e94560, #F96900);
  overflow: hidden;
  text-align: center;

  font-family: 'Bebas Neue', sans-serif;
}

/* Blurry background blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: #e94560;
  top: -80px;
  left: -80px;
}

.hero::after {
  width: 350px;
  height: 350px;
  background: #0f3460;
  bottom: -60px;
  right: -60px;
}

/* Glass card inside hero */
.hero-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 50px 70px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: white;
}

.profession {
  font-size: 1.3rem;
  color: #f0f0f0;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: 'DM Sans', san-serif;
}
/* ── SECTIONS ── */
.section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #041B15;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 3px solid #9e0059;
  display: inline-block;
  font-family: 'Instrument Serif', san-serif;
}

/* ── CONTACT LIST ── */
.section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'DM Sans', san-serif;

}

.section ul li {
  font-size: 1rem;
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  font-family: 'DM Sans', san-serif;
}

/* ── CARDS (Education & Experience) ── */
.card {
  background: white;
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #9e0059;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'DM Sans', san-serif;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #041B15;
  margin-bottom: 4px;
  font-family: 'Instrument Serif', san-serif;
}

.place {
  color: #9e0059;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.date {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 30px;
  background-color: #041B15;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 60px;
  font-family: 'DM Sans', sans-serif;
}
/* ── FADE-IN ANIMATION ── */
.section, .hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible, .hero.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TYPING ANIMATION ── */
.cursor {
  display: inline-block;
  color: #e94560;
  font-weight: 300;
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}