:root {
    --pure-white: #ffffff;
    --cream-soft: #fcfbf9;
    --gold-foil: #d4af37;
    --eucalyptus: #8f9779;
    --text-classic: #555555;
    --font-script: 'Pinyon Script', cursive;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--cream-soft);
    color: var(--text-classic);
    font-family: var(--font-body);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmNmYmY5Ii8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmM2YwZTkiLz4KPC9zdmc+');
    /* Subtle texture */
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    color: var(--eucalyptus);
}

h1.hero-title {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: var(--gold-foil);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

h2.section-title {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--eucalyptus);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 20px;
}

h2.section-title::after {
    content: '✝';
    display: block;
    font-family: serif;
    font-size: 1.5rem;
    color: var(--gold-foil);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.lead-text {
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

/* Components */
.dove-card {
    background: white;
    border: 1px solid #efebe9;
    border-radius: 4px;
    /* Classic sharp corners or very slight radius */
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.5s ease;
}

.dove-card:hover {
    transform: translateY(-5px);
}

.dove-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--gold-foil);
    opacity: 0.3;
    pointer-events: none;
}

.icon-classic {
    color: var(--gold-foil);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Hero Animation */
.dove-container {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.holy-dove {
    font-size: 4rem;
    color: var(--white-paper);
    background: linear-gradient(45deg, var(--gold-foil), #fae588);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatDove 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

@keyframes floatDove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Buttons */
.btn-holy {
    background: white;
    color: var(--eucalyptus);
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 40px;
    border: 1px solid var(--eucalyptus);
    transition: all 0.4s;
    font-size: 0.8rem;
}

.btn-holy:hover {
    background: var(--eucalyptus);
    color: white;
    text-decoration: none;
}

/* Countdown */
.holy-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(143, 151, 121, 0.2);
    border-bottom: 1px solid rgba(143, 151, 121, 0.2);
    padding: 1rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.time-wrapper span {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-foil);
    display: block;
    line-height: 1;
}

.time-wrapper small {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #999;
}

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

.btn-music-gold {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--gold-foil);
    border: 1px solid var(--gold-foil);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}