/* CSS Variables Design System */
:root {
    /* Colors */
    --color-bg: #D5C5BA;
    --color-text-dark: #402714;
    --color-text-light: #FFFFFF;
    --color-primary: #CA6C25;
    --color-secondary: #BCA774;
    --color-gold-light: #e6c887;
    --color-gold-gradient: linear-gradient(90deg, #d4af62 0%, #ebb962 50%, #c49646 100%);
    --color-header-bg: rgba(64, 39, 20, 0.3);
    --color-footer-bg: #402714;
    --color-footer-border: rgba(255, 255, 255, 0.2);

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Philosopher', serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;

    /* Layout */
    --container-max-width: 1450px;
    --container-padding: 15px;
    --border-radius-btn: 10px;
    --border-radius-header: 20px;
}

.btn-birthday {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ce9e49 0%, #e8c678 25%, #fff2c8 45%, #e8c678 65%, #a4701f 100%);
    color: #402714;
    border: 1px solid #d4af62;
    border-radius: 50px;
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.8),
                inset 0 -2px 4px rgba(140, 90, 20, 0.6),
                0 4px 15px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-birthday::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: gold-shine 4s infinite;
    z-index: -1;
}

@keyframes gold-shine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.btn-birthday:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.9),
                inset 0 -2px 4px rgba(140, 90, 20, 0.6),
                0 6px 20px rgba(0, 0, 0, 0.5);
    color: #402714;
	 background: linear-gradient(135deg, #ce9e49 0%, #e8c678 25%, #fff2c8 45%, #e8c678 65%, #a4701f 100%);
}

/* Promo CTA Section */
.promo-cta {
    padding: 0 15px 50px;
}

.promo-cta__inner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(64, 39, 20, 0.2);
}

.promo-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-cta__bg img, .promo-cta__bg picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30,18,10,0.95) 0%, rgba(30,18,10,0.8) 50%, rgba(64,39,20,0) 100%);
}

.promo-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 80px;
}

.promo-cta__text {
    max-width: 750px;
}

.promo-cta__pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #402714;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ce9e49 0%, #e8c678 25%, #fff2c8 45%, #e8c678 65%, #a4701f 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.promo-cta__title {
    font-family: var(--font-heading);
    background: linear-gradient(to bottom, #d4af37 0%, #fff2c8 30%, #a4701f 50%, #e8c678 70%, #8a5a19 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.promo-cta__text p {
    color: #f9f0ce;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

.promo-cta__action {
    flex-shrink: 0;
}


@media(max-width: 991px) {
    .promo-cta { padding: 0 15px 40px; }
    .promo-cta__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .promo-cta__overlay {
        background: rgba(30,18,10,0.85);
    }
    .promo-cta__text p {
        margin: 0 auto;
    }
    .promo-cta__title br {
        display: none;
    }
}

@media(max-width: 767px) {
    .promo-cta { padding: 0 15px 60px; }
    .promo-cta__inner {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .promo-cta__title {
        font-size: 32px;
    }
    .btn-birthday { width: 100%; text-align: center; padding: 15px 20px; }
}
