:root {
    --boho-terra: #DFA896;
    --boho-sage: #9CAF88;
    --boho-mustard: #E0C097;
    --boho-beige: #F9F7F2;
    --boho-text: #5D544C;
    --boho-white: #FFFFFF;
    --font-heading: 'Caveat', cursive;
    --font-body: 'Outfit', sans-serif;
}

body {
    background-color: var(--boho-beige);
    color: var(--boho-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: radial-gradient(#E8E6E1 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Outfit:wght@300;400;600&display=swap');

h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--boho-terra);
    line-height: 1;
}

h2,
h3 {
    font-family: var(--font-heading);
    color: var(--boho-sage);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--boho-mustard);
    margin: 5px auto 0;
    border-radius: 2px;
}

/* Components */
.boho-card {
    background: var(--boho-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(93, 84, 76, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.boho-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--boho-terra), var(--boho-mustard), var(--boho-sage));
}

.btn-boho {
    background: var(--boho-terra);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(223, 168, 150, 0.4);
}

.btn-boho:hover {
    background: var(--boho-sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(156, 175, 136, 0.4);
    text-decoration: none;
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-rainbow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

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

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

.count-circle {
    width: 70px;
    height: 70px;
    background: var(--boho-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--boho-mustard);
}

.count-circle span {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--boho-text);
    line-height: 1;
}

.count-circle small {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--boho-sage);
}

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

.btn-music-boho {
    width: 50px;
    height: 50px;
    background: var(--boho-sage);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(156, 175, 136, 0.4);
    transition: all 0.3s;
}

.btn-music-boho:hover {
    transform: scale(1.1);
    background: var(--boho-terra);
}

/* Icons */
.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(224, 192, 151, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--boho-terra);
    font-size: 1.5rem;
}