:root {
    --gold: #D4AF37;
    --dark-gold: #AA8C2C;
    --ivory: #FFFFF0;
    --charcoal: #36454F;
    --white: #FFFFFF;
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Playfair Display', serif;
}

body {
    background-color: var(--ivory);
    color: var(--charcoal);
    font-family: var(--font-serif);
    font-weight: 400;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

h1,
h2,
h3 {
    font-family: var(--font-serif);
}

h1 {
    font-size: 3.5rem;
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.script-font {
    font-family: var(--font-script);
    color: var(--dark-gold);
}

.section-title {
    font-size: 3rem;
    color: var(--dark-gold);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-family: var(--font-script);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Components */
.gold-card {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    margin-bottom: 2rem;
    position: relative;
}

.gold-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    pointer-events: none;
}

.btn-gold {
    background: linear-gradient(to right, var(--gold), var(--dark-gold));
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: linear-gradient(to right, var(--dark-gold), var(--gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    text-decoration: none;
}

/* Hero */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #fffff5 0%, #f0f0e0 100%);
}

#dustCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.frame-50 {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    position: relative;
    padding: 10px;
    border: 5px double var(--gold);
    border-radius: 5px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insignia-50 {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Photo Comparison (Then & Now) */
.photo-pair {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.photo-item {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    text-align: center;
}

.photo-frame-simple {
    padding: 5px;
    border: 1px solid var(--gold);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.photo-frame-simple img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: sepia(0.3);
    /* Vintage feel */
}

/* Audio */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-gold {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.btn-music-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: rotate(360deg);
}

/* Footer */
footer {
    background: var(--white);
    color: var(--charcoal);
    padding: 3rem 0;
    border-top: 5px solid var(--gold);
}