:root {
    --gold-yellow: #FFC107;
    --gold-orange: #FF9800;
    --gold-sunset: #FF5722;
    --gold-olive: #558B2F;
    --gold-cream: #FFFDE7;
    --gold-brown: #5D4037;
    --font-display: 'Abril Fatface', cursive;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--gold-cream);
    color: var(--gold-brown);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, #FFFDE7, #FFF8E1);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:wght@300;400;700&display=swap');

h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold-brown);
    text-shadow: 2px 2px 0px var(--gold-yellow);
    letter-spacing: 1px;
}

h2,
h3 {
    font-family: var(--font-display);
    color: var(--gold-olive);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '🌻';
    display: block;
    font-size: 1.5rem;
    margin-top: -10px;
}

/* Components */
.gold-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.15);
    border-bottom: 5px solid var(--gold-yellow);
}

.gold-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-yellow);
    border-radius: 10px 10px 0 0;
}

.btn-gold {
    background: var(--gold-yellow);
    color: var(--gold-brown);
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 12px 35px;
    border-radius: 50px;
    border: 2px solid var(--gold-yellow);
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: #fff;
    color: var(--gold-orange);
    border-color: var(--gold-orange);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Sunset Gradient */
    background: linear-gradient(135deg, #FFecb3 0%, #FFCC80 50%, #FFAB91 100%);
}

.hero-sun {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.hero-image {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

/* Countdown */
.gold-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.count-sunflower {
    width: 75px;
    height: 75px;
    background: var(--gold-yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gold-brown);
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Petals simulated with box-shadows or simple styling */
.count-sunflower::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed var(--gold-orange);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.count-sunflower span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
}

.count-sunflower small {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-gold {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold-yellow), var(--gold-orange));
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    transition: all 0.3s;
}

.btn-music-gold:hover {
    transform: scale(1.1);
}

/* Rustic Divider */
.rustic-divider {
    height: 2px;
    background: var(--gold-brown);
    width: 100px;
    margin: 30px auto;
    position: relative;
    opacity: 0.3;
}