body {
    background-color: #f4f1ea;
    color: #4e342e;
    overflow-x: hidden;
    font-family: 'Cormorant Garamond', serif;
}

/* Colors from image */
:root {
    --primary-brown: #8d6e63;
    --dark-brown: #5d4037;
    --light-cream: #f4f1ea;
    --accent-gold: #d4af37;
    --bg-footer: #795548;
}

.hero-bg {
    background-image: linear-gradient(rgba(244, 241, 234, 0.3), rgba(244, 241, 234, 0.3)), url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Custom Ornaments */
.ornament-top {
    width: 200px;
    margin: 0 auto 10px;
}

.curve-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.curve-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.curve-divider .shape-fill {
    fill: #f4f1ea;
}

.flower-corner {
    position: absolute;
    width: 250px; /* Increased size for better visual impact */
    z-index: 10;
    pointer-events: none;
    opacity: 0.9;
}

.top-left { 
    top: -40px; 
    left: -40px; 
}

.bottom-right { 
    bottom: -40px; 
    right: -40px; 
    transform: rotate(180deg); 
}

.intro-bg {
    background-image: linear-gradient(rgba(244, 241, 234, 0.85), rgba(244, 241, 234, 0.85)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Profile Box */
.profile-box {
    background: #fffdf9;
    border: 1px solid #e0d5c1;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Music UI */
#music-control {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

#music-control button {
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--primary-brown);
}

#main-content {
    display: none;
}

.scroll-hidden {
    overflow: hidden;
}

/* Custom decorative lines */
.deco-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-brown);
}

.deco-line::before, .deco-line::after {
    content: "";
    height: 1px;
    width: 40px;
    background-color: var(--primary-brown);
}

.countdown-box {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-brown {
    background-color: #795548;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-brown:hover {
    background-color: #5d4037;
    transform: translateY(-2px);
}
