:root {
    --carr-cream: #FFFDD0;
    --carr-gold: #D4AF37;
    --carr-pink: #FFD1DC;
    --carr-blue: #AEC6CF;
    --carr-text: #5D4037;
    --carr-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--carr-cream);
    color: var(--carr-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image:
        linear-gradient(90deg, transparent 50%, rgba(212, 175, 55, 0.05) 50%);
    background-size: 50px 50px;
}

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

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--carr-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

h2,
h3 {
    font-family: var(--font-heading);
    color: var(--carr-text);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--carr-gold);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--carr-gold);
    margin: 10px auto 0;
}

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

.carr-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed var(--carr-gold);
    border-radius: 5px;
    pointer-events: none;
}

.btn-carr {
    background: var(--carr-gold);
    color: white;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 0;
    border: 1px solid var(--carr-gold);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-carr:hover {
    background: transparent;
    color: var(--carr-gold);
    text-decoration: none;
}

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

.carousel-pole {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(90deg, #FDD835, #FBC02D, #FDD835);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 4px double var(--carr-gold);
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto;
    border: 4px solid var(--carr-gold);
    padding: 4px;
}

/* Countdown */
.carr-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    font-family: var(--font-heading);
}

.count-box {
    text-align: center;
}

.count-box span {
    font-size: 2.5rem;
    color: var(--carr-gold);
    display: block;
    line-height: 1;
}

.count-box small {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

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

.btn-music-carr {
    width: 50px;
    height: 50px;
    background: var(--carr-gold);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Carousel Animation (Horse) */
.carousel-horse {
    position: absolute;
    width: 100px;
    z-index: 5;
    opacity: 0.8;
}

@keyframes floatHorse {

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

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

.animate-horse {
    animation: floatHorse 3s ease-in-out infinite;
}