/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:   #2E2E2E;
  --dark:    #000000c2;
  --mid:     #7a7a7a;
  --accent:  #d58658;
  --border:  #E5E0D8;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 60px 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 380px;
}

.hero-right {
  flex: 1;
  max-width: 420px;
}

.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-subtext {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* Mobile — stack vertically on small screens */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .hero-right {
    width: 100%;
  }
}

/* Photo circle */
.photo-wrap {
  margin-bottom: 24px;
}

.photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  /* When you add a real <img>, remove everything above except width/height/border-radius/border */
}

/* If you swap in a real <img> inside .photo-wrap: */
.photo-wrap img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  object-fit: cover;
  display: block;
}

/* Name */
.name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.001em;
  color: var(--dark);
  margin-bottom: 12px;
}

/* Tagline */
.tagline {
  font-size: 0.99rem;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ── SECTIONS ── */
.section {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 24px;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.section p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
}

/* ── CONTACT ── */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 30px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}

.contact-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 32px 20px 48px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.03em;
}
/* ── CONTACT FORM ── */
.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #3a3a3a;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border 0.2s;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mid);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form button {
  align-self: flex-start;
  padding: 10px 28px;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 30px;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-form button:hover {
  background: var(--accent);
  color: #fff;
}

/* ── PHOTO GLOW ── */
.photo-wrap img {
  animation: photoGlow 3s ease-in-out infinite;
}

@keyframes photoGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(192, 128, 90, 0.3); }
  50%       { box-shadow: 0 0 35px rgba(192, 128, 90, 0.7); }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE FADE IN ── */
body {
  animation: pageFade 1.2s ease forwards;
}

@keyframes pageFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ── MUSIC PLAYER ── */
#music-player {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 12px 24px;
  width: 90%;
  max-width: 480px;
}

#player-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

#player-info {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

#song-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#song-artist {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--accent);
  white-space: nowrap;
}

#player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

#play-btn {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

#play-btn:hover {
  background: var(--accent);
  color: #fff;
}

#progress-wrap {
  flex: 1;
  height: 4px;
  background: #444;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.5s linear;
}

#time-display {
  font-size: 0.75rem;
  color: var(--mid);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}