@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray: #8892a4;
  --border: rgba(201, 168, 76, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  min-height: 100vh;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ─── PAGE WRAPPER ─── */
.page {
  padding-top: 50px;
  min-height: 100vh;
}

/* ─── HERO (HOME) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 700px; animation: fadeUp 1s ease both; }

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 2px solid var(--border);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero-name {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-name span { color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  font-family: 'Times New Roman', Times, serif;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

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

.hero-line {
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.btn:hover {
  background: #3b3b39;
}
.hero-img img {
  width: 600px;
  height: 800px;
  object-fit: cover;
  border-radius: 20px;
  filter: contrast(1.1) brightness(0.9);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}
.hero-img img:hover {
  transform: scale(1.03);
}
/* ─── SECTION STYLES ─── */
.section {
  padding: 6rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 3rem;
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  animation: fadeUp 0.8s ease both;
}

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

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  margin-top: 1rem;
}
    

/* ─── SKILLS ─── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.skill-category { margin-bottom: 1rem; }

.skill-category-title {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.skill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.skill-name {
  font-size: 0.9rem;
  color: var(--cream);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.contact-link:hover { color: var(--gold); }

.contact-link-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-link:hover .contact-link-icon { border-color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-input, .form-textarea {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  resize: none;
}

.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-sidebar { position: sticky; top: 100px; }        

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-quick { display: flex; flex-direction: column; gap: 0.8rem; }

.about-quick-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.about-quick-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.about-quick-value { font-size: 0.9rem; color: var(--cream); }

.about-body p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* ─── POETRY ─── */
.poem-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.poem-card:hover { transform: translateX(6px); }

.poem-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.poem-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.9;
  font-style: italic;
}

.poem-meta {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid #333;
}

.footer-left {
  color: #f5c542;
  font-size: 10px;
}

.footer-right {
  color: #f5c542;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-line { display: none; }
  .section { padding: 4rem 1.5rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
