:root {
    --c-bg1: #fef2f2;
    --c-bg2: #f0fdf4;
    --c-text: #0f172a;
    --c-dark: #0f2442;
    --c-gold: #be9360;
    --c-brand: #000;
    --rad-xl: 32px;
    --shadow: 0 18px 40px rgba(0, 0, 0, .20);
}

/* HERO XMAS */
.hero-xmas {
    position: relative;
    /* background: linear-gradient(135deg, #fff9f2, #ffffff); */
    background-color: #fff;
    overflow: hidden;
   padding: 24px;
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-ornament-xmas{
    min-height: 70vh;
}

@media(max-width: 500px){
    .hero-ornament-xmas{
        padding-top: 50px !important;
        min-height: 80vh;
    }
}

.hero-ornament {
    position: absolute;
    inset: 0 0 auto 0;
    height: 54px;
    background-image:url('{{ "assets/images/experiences/christmas_garland2.png"|theme }}');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: top center;
    z-index: 10;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 28px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}



.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.btn-back-slider {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--c-dark);
    text-decoration: none;
    opacity: .98;
    width: 180px;
    padding: 5px;
    border-radius: 20px;
    background: rgba(215, 9, 9, 0.1);
    /* backdrop-filter: blur(4px); */
    border: 1px solid rgba(255, 255, 255, .3);
}

.btn-back-slider:hover {
    opacity: 1;
    text-decoration: underline;
}

.brand {
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--c-gold);
    margin-bottom: 8px;
}

.hero-title-slider {
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.05;
    margin: 0 0 16px;
    
}
.hero-left .hero-title-slider{
    color: var(--c-brand);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--c-dark);
    max-width: 52ch;
    margin-bottom: 26px;
}

.hero-left .hero-subtitle{
    color: var(--c-brand);
}

/* alternativă pentru .hero-cta (înlocuiește cele de sus) */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
    /* margin-top: 28px; */
}

.cta {
    --radius: 999px;
    --pad-x: 22px;
    --pad-y: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: var(--pad-y) var(--pad-x);
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.cta svg {
    flex: 0 0 auto;
}

.cta-filled {
    background: #c49b6c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(196, 155, 108, .25);
    transition: all .25s ease;
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    width: 48%;
}

.cta-filled:hover {
    background: #b38a5c;
    transform: translateY(-1px);
}

.cta-outline-gold {
    background: transparent;
    border: 2px solid #c49b6c;
    color: #c49b6c;
    border-radius: 9999px;
    padding: 10px 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
}

.cta-outline-gold:hover {
    background: #c49b6c;
    color: #fff;
    transform: translateY(-1px);
}

.cta-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 9999px;
    border: 1px solid rgba(21, 27, 54, 0.15);
    background: rgba(255, 255, 255, 0.7);
    color: #151b36;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    justify-content: center;
    width: 48%;

}

.cta-outline-dark:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(21, 27, 54, 0.25);
    transform: translateY(-1px);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-frame {
    position: relative;
    border-radius: var(--rad-xl);
    overflow: hidden;
    /*box-shadow: var(--shadow);*/
    background: #f3f6fa;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 410px;
    border-radius: 24px;
    overflow: hidden;
    background: #dee2eb;
}

.hero-card {
    width: 100%;
    height: 410px;
    aspect-ratio: 16/9;
    background: #cdd6e4;
    position: relative;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(7, 122, 27, 0.17) 0%, rgba(7, 122, 27, 0) 100%);
    pointer-events: none;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: #ffffffcc;
    color: #1f2937;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(4px);
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    z-index: 10;
}

.hero-prev {
    left: 10px;
}

.hero-next {
    right: 10px;
}

.hero-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .16);
}

@media (max-width:980px) {
    .hero-arrow {
        display: none;
    }
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #ffffffcc;
    opacity: .8;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

@media (max-width: 700px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .show-buttons-desktop{
        display: none;
    }
    .show-buttons-mobile{
        display: block;
    }
    .hero-left{
        text-align: center;
    }
    .about-container .hero-subtitle{
        max-width: 100%;
    }
}
@media(min-width: 700px){
    .show-buttons-desktop{
        display: block;
    }
    .show-buttons-mobile{
        display: none;
    }
}

@media(min-width: 801px) and (max-width: 1300px){
    .hero-title-slider {
        font-size: 40px;
    }
    .hero-frame{
        max-width: 500px;
    }
}
@media (max-width: 800px) {

    .hero-frame,
    .hero-swiper,
    .hero-card {
        height: 240px;
        min-height: 180px;
        aspect-ratio: 16/10;
        border-radius: 18px;
    }

    

    .hero-title-slider {
        font-size: 26px;
    }
}

@media(min-width:700px) and (max-width:800px){
    .cta-outline-dark {
        width: 100%;
    } 
    .cta-filled{
        width: 100%;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .hero-xmas {
        padding: 14px 4vw;
        padding-bottom: 20px;
    }

    .cta-outline-dark {
        font-size: 14px;
        font-weight: 400;
    } 
    .cta-filled{
        font-size: 14px;
        font-weight: 400;
    }

    .hero-frame{
        max-width: 90%;
        margin:0;
    }


}

@media (prefers-reduced-motion: reduce) {

    .cta,
    .hero-arrow {
        transition: none !important;
    }
}