:root {
    --coq-pink: #FFD1DC;
    --coq-pink-dark: #F48FB1;
    --coq-white: #FFFBFC;
    --coq-pearl: #F8F8FF;
    --coq-gold: #D4AF37;
    --coq-text: #5D4037;
    --font-script: 'Pinyon Script', cursive;
    --font-heading: 'Pinyon Script', cursive;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--coq-white);
    color: var(--coq-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 209, 220, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 209, 220, 0.4) 0%, transparent 20%);
}

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

h1 {
    font-family: var(--font-script);
    font-size: 5rem;
    color: var(--coq-pink-dark);
    text-shadow: 2px 2px 0px #fff, 3px 3px 0px rgba(0, 0, 0, 0.1);
}

h2,
h3 {
    font-family: var(--font-heading);
    color: var(--coq-pink-dark);
}

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

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

/* Components */
.coq-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 209, 220, 0.5);
    box-shadow: 0 10px 30px rgba(255, 209, 220, 0.3);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.coq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(45deg,
            var(--coq-pink),
            var(--coq-pink) 10px,
            #fff 10px,
            #fff 20px);
}

.btn-coq {
    background: var(--coq-pink);
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--coq-pink);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 209, 220, 0.6);
}

.btn-coq:hover {
    background: #fff;
    color: var(--coq-pink-dark);
    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;
    background: #FFFBFC;
}

.hero-bow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pattern done with JS canvas for animation */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid white;
    box-shadow: 0 20px 50px rgba(244, 143, 177, 0.2);
    backdrop-filter: blur(10px);
}

.hero-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

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

.count-circle {
    width: 70px;
    height: 70px;
    background: var(--coq-pink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 209, 220, 0.8);
}

.count-circle span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.count-circle small {
    font-size: 0.6rem;
    text-transform: uppercase;
}

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

.btn-music-coq {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--coq-pink-dark);
    border: 2px solid var(--coq-pink);
    box-shadow: 0 5px 20px rgba(244, 143, 177, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-music-coq:hover {
    transform: rotate(180deg);
}

/* Pearl Divider */
.pearl-divider {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.pearl {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, #fff, #eee, #ddd);
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}