@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');
:root { --gold: #d4a574; --gold-dark: #8b6b4a; --cream: #f5efe8; --bg: #0f0f13; --bg2: #1a1a22; --card-bg: #1e1e28; --text: #e8e4df; --text-muted: #9a9590; --shadow: rgba(0,0,0,0.3); --accent: #d4a574; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.7; }
a { color: var(--gold); }

nav { position: fixed; top: 0; width: 100%; background: rgba(15,15,19,0.95); backdrop-filter: blur(20px); padding: 0.8rem 2rem; display: flex; justify-content: center; gap: 1.2rem; z-index: 100; border-bottom: 1px solid rgba(212,165,116,0.15); flex-wrap: wrap; align-items: center; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: all 0.3s; padding: 0.3rem 0.6rem; border-radius: 8px; }
nav a:hover, nav a.active { color: var(--gold); background: rgba(212,165,116,0.1); }
.nav-brand { font-family: 'Dancing Script', cursive; font-size: 1.1rem; color: var(--gold); font-weight: 600; margin-right: 0.5rem; }

.page-content { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem 3rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); text-align: center; margin-bottom: 0.5rem; color: var(--gold); }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem; }
.section-banner { width: 100%; height: 350px; object-fit: cover; border-radius: 16px; margin-bottom: 3rem; display: block; box-shadow: 0 8px 30px var(--shadow); }

.info-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.info-box { background: var(--card-bg); border-radius: 16px; padding: 2rem; box-shadow: 0 2px 12px var(--shadow); border: 1px solid rgba(212,165,116,0.1); }
.info-box h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.info-box p, .info-box li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }
.info-box ul { list-style: none; padding: 0; }
.info-box li { padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.info-box li:last-child { border: none; }

.song-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.song-card { background: var(--card-bg); border-radius: 16px; padding: 1.5rem; border: 1px solid rgba(212,165,116,0.08); transition: all 0.3s; }
.song-card:hover { border-color: rgba(212,165,116,0.3); transform: translateY(-3px); box-shadow: 0 8px 25px var(--shadow); }
.song-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.2rem; }
.song-card .song-year { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.song-card .song-lyrics { font-style: italic; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; padding: 0.8rem; background: rgba(212,165,116,0.05); border-radius: 10px; border-left: 3px solid var(--gold); margin-top: 0.5rem; }
.song-card .song-info { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.6; }

.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.album-card { background: var(--card-bg); border-radius: 14px; overflow: hidden; border: 1px solid rgba(212,165,116,0.08); transition: all 0.3s; }
.album-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--shadow); }
.album-icon { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(30,30,40,1)); }
.album-info { padding: 1rem; }
.album-info h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.album-info .album-year { font-size: 0.8rem; color: var(--gold-dark); }

.quote-section { text-align: center; padding: 4rem 2rem; max-width: 800px; margin: 0 auto; }
.quote-section blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 3vw, 1.6rem); font-style: italic; color: var(--gold); line-height: 1.8; margin-bottom: 1.5rem; }
.quote-section cite { font-family: 'Dancing Script', cursive; font-size: 1.1rem; color: var(--text-muted); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.timeline-item { padding: 0 0 2.5rem 2rem; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -2rem; top: 0.5rem; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px rgba(212,165,116,0.4); }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

.page-header { text-align: center; padding: 2rem 0 1rem; }

footer { text-align: center; padding: 3rem 2rem; border-top: 1px solid rgba(212,165,116,0.15); color: var(--text-muted); font-size: 0.9rem; max-width: 1100px; margin: 0 auto; }

.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; padding: 2rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('img/hero.png') center/cover no-repeat; opacity: 0.2; filter: blur(2px); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,19,0.6) 0%, rgba(15,15,19,0.4) 40%, rgba(15,15,19,0.9) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero-portrait { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(212,165,116,0.3); box-shadow: 0 10px 40px var(--shadow); margin-bottom: 2rem; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; margin-bottom: 0.5rem; line-height: 1.2; }
.hero h1 span { background: linear-gradient(135deg, var(--gold), #f0d0a0, var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .dedication { font-family: 'Dancing Script', cursive; font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--gold); margin-bottom: 1rem; }
.hero .dates { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero-nav a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; background: var(--card-bg); border-radius: 30px; text-decoration: none; color: var(--gold); font-weight: 500; box-shadow: 0 4px 15px var(--shadow); transition: all 0.3s; font-size: 0.92rem; border: 1px solid rgba(212,165,116,0.15); }
.hero-nav a:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--shadow); background: rgba(212,165,116,0.1); }

.note { position: fixed; pointer-events: none; z-index: 0; opacity: 0.1; animation: noteFall linear infinite; font-size: 1.2rem; }
@keyframes noteFall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 0; } 10% { opacity: 0.1; } 90% { opacity: 0.1; } 100% { transform: translateY(100vh) rotate(360deg); opacity: 0; } }

@media (max-width: 768px) {
    nav { gap: 0.5rem; padding: 0.6rem 1rem; }
    nav a { font-size: 0.72rem; padding: 0.2rem 0.4rem; }
    .hero-portrait { width: 160px; height: 160px; }
    .hero-nav a { padding: 0.6rem 1rem; font-size: 0.82rem; }
}
