/* _content/emazaya/Views/About/Index.cshtml.rz.scp.css */
.about-container[b-mw8e92drhr]{
    display: flex;
    min-height: 100vh;
    height: auto;
    background-image: url('/assets/images/bg-pattern.png');
    background-size: auto;
    background-repeat: repeat;
    overflow: hidden;
}

.about-container .tree-gif-section[b-mw8e92drhr]{
    width: fit-content;
    min-height: 100vh;
    margin-bottom: 6.6rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromLeft-b-mw8e92drhr 1.2s ease-out 0.3s both;
}

.about-container .tree-gif-section > *[b-mw8e92drhr]{
    flex: 1;
}

.about-container .tree-gif-section img[b-mw8e92drhr] {
    max-width: 341px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.about-container .tree-gif-section .tree-gif-text[b-mw8e92drhr] {
    color: var(--primary-color);
    font-size: 1.14rem;
    font-weight: bold;
    min-width: 222px;
    text-align: center;
    justify-self: center;
    animation: slideInFromLeft-b-mw8e92drhr 1.2s ease-out 0.3s both;
}

/* Tree growth stage colors with high visibility on #FAE9E5 background */
.about-container .tree-gif-section .tree-gif-text p:nth-child(1)[b-mw8e92drhr] {
    color: #5D4037; /* Soil - Dark brown */
}

.about-container .tree-gif-section .tree-gif-text p:nth-child(2)[b-mw8e92drhr] {
    color: #8D6E63; /* Seed - Deep orange-brown */
}

.about-container .tree-gif-section .tree-gif-text p:nth-child(3)[b-mw8e92drhr] {
    color: #6D4C41; /* Root - Rich brown */
}

.about-container .tree-gif-section .tree-gif-text p:nth-child(4)[b-mw8e92drhr] {
    color: #2E7D32; /* Trunk - Dark forest green */
}

.about-container .tree-gif-section .tree-gif-text p:nth-child(5)[b-mw8e92drhr] {
    color: #C2185B; /* Flower - Vibrant magenta */
}

/* Slide from left animation */
@keyframes slideInFromLeft-b-mw8e92drhr {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.about-container .main-section[b-mw8e92drhr]{
    width: 100%;
    padding-top: 114px;
    height: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-container .main-section .morpishm-slide-section[b-mw8e92drhr]{
    width: 100%;
    height: fit-content;
    min-height: 666px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: none;
}

.about-container .main-section .morpishm-slide-section img[b-mw8e92drhr]{
    width: 100%;
    max-width: 666px;
    height: auto;
    object-fit: contain;
    position: absolute;
    opacity: 0;
}

/* Show first slide by default */
.about-container .main-section .morpishm-slide-section img:first-of-type[b-mw8e92drhr] {
    opacity: 1;
}

/* Slide Navigation Arrows */
.about-container .main-section .morpishm-slide-section .slide-arrow[b-mw8e92drhr] {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    bottom: 114px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--primary-color, #027353);
    opacity: 0.9;
    pointer-events: auto;
}

.about-container .main-section .morpishm-slide-section .slide-arrow:hover[b-mw8e92drhr] {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.about-container .main-section .morpishm-slide-section .slide-arrow:active[b-mw8e92drhr] {
    transform: scale(0.95);
}

.about-container .main-section .morpishm-slide-section .slide-arrow svg[b-mw8e92drhr] {
    transition: transform 0.2s ease;
}

.about-container .main-section .morpishm-slide-section .slide-arrow:hover svg[b-mw8e92drhr] {
    transform: scale(1.1);
}

.about-container .main-section .morpishm-slide-section .slide-arrow-left[b-mw8e92drhr] {
    left: calc(50% - 89px);
}

.about-container .main-section .morpishm-slide-section .slide-arrow-right[b-mw8e92drhr] {
    right: calc(50% - 89px);
}

/* Slide Indicator */
.about-container .main-section .morpishm-slide-section .slide-indicator[b-mw8e92drhr] {
    position: absolute;
    left: 50%;
    bottom: 122px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color, #027353);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.about-container .main-section .morpishm-slide-section .slide-indicator:hover[b-mw8e92drhr] {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

@media (max-width: 866px) { 
    .about-container[b-mw8e92drhr]{
        flex-direction: column-reverse;
        justify-content: flex-end;
        gap: 2.6rem;
        padding-bottom: 266px;
    }

    .about-container .tree-gif-section[b-mw8e92drhr]{
        height: fit-content;
        width: 100%;
        justify-content: flex-start;
        min-height: 0;
        flex-wrap: wrap-reverse;

    }

    .about-container .tree-gif-section .tree-gif-text[b-mw8e92drhr] {
        font-size: 1rem;
        min-width: 100%;
        text-align: center;
    }
    
    .about-container .main-section[b-mw8e92drhr]{
        padding-top: 0;
        min-height: 0;
    }

    .about-container .main-section .morpishm-slide-section[b-mw8e92drhr]{
        aspect-ratio: 5 / 4;
        min-height: 341px;
    }
    
    /* Adjust arrows for mobile */
    .about-container .main-section .morpishm-slide-section .slide-arrow[b-mw8e92drhr] {
        bottom: 22px;
    }
        
    /* Adjust indicator for mobile */
    .about-container .main-section .morpishm-slide-section .slide-indicator[b-mw8e92drhr] {
        bottom: 26px;
    }
}
/* _content/emazaya/Views/Futures/Index.cshtml.rz.scp.css */
.futures-description[b-pf8hsy51vl] {
    margin: 41px 0;
    padding: 0.66rem 0;
    width: 100dvw;
    overflow: hidden;
    text-wrap: nowrap;
    font-size: 1.14rem;
    font-weight: 600;
    text-align: center;
    align-items: center;
    background-color: #f2b0774f;
    border: 1px solid #F2B077;
    color: var(--primary-color);

}

.futures-description p[b-pf8hsy51vl]{
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: 0;
    animation: textSlide-b-pf8hsy51vl 34s linear infinite;
    animation-delay: 1.26s;
    display: flex;
    align-items: center;
}

.separator-icon[b-pf8hsy51vl] {
    width: 20px;
    height: 20px;
    margin: 0 12px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.separator-icon:hover[b-pf8hsy51vl] {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes textSlide-b-pf8hsy51vl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.6666%);
    }
    
}

.futures-container[b-pf8hsy51vl]{
    display: flex;
    min-height: 100dvh;
    height: fit-content;
    max-width: calc(100dvw - 22%);
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 141px;
}

/* FUTURES GRID SYSTEM */
.futures-content[b-pf8hsy51vl] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.futures-grid[b-pf8hsy51vl] {
    display: grid;
    gap: 1.4rem;
    width: 100%;
    /* Desktop: 4 columns, 2 rows */
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

/* FUTURES SLIDER STYLES */
.futures-slider[b-pf8hsy51vl] {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 50% 50% 0 0; 
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.slider-frame[b-pf8hsy51vl] {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Perfect square for 1:1 ratio */
    overflow: hidden;
    border-radius: 50% 50% 0 0; /* Match parent chapel window shape */
    padding: 0.5rem;
    padding-bottom: 0;
    box-sizing: border-box;
}

.slider-images[b-pf8hsy51vl] {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 0 0; /* Inner border radius for images */
    overflow: hidden;
    cursor: url('/assets/cursors/pause.png'), auto;
}

.slider-image[b-pf8hsy51vl] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: block;
}

.slider-image.active[b-pf8hsy51vl] {
    opacity: 1;
}

.slider-title[b-pf8hsy51vl] {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    padding: 0.66rem;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* TABLET STYLES: 2 columns, 4 rows */
@media (max-width: 1024px) and (min-width: 769px) {
    .futures-container[b-pf8hsy51vl]{
    padding-bottom: 289px;
    }

    .futures-grid[b-pf8hsy51vl] {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1.22rem;
    }
    
    .futures-content[b-pf8hsy51vl] {
        padding: 0 1.5rem;
    }
    
    .slider-title[b-pf8hsy51vl] {
        font-size: 0.95rem;
        padding: 0.8rem;
        min-height: 55px;
    }
}

/* MOBILE STYLES: 1 column, 8 rows */
@media (max-width: 768px) {
    .futures-container[b-pf8hsy51vl]{
    padding-bottom: 289px;
    }
    
    .futures-grid[b-pf8hsy51vl] {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 2rem 1rem;
        min-height: auto;
    }
    
    .futures-content[b-pf8hsy51vl] {
        padding: 0 1rem;
    }
    
    .slider-title[b-pf8hsy51vl] {
        font-size: 0.9rem;
        padding: 0.75rem;
        min-height: 50px;
        /* Allow text wrapping on mobile */
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.3;
    }
}

/* SMALL MOBILE STYLES */
@media (max-width: 480px) {
    .futures-grid[b-pf8hsy51vl] {
        gap: 2rem;
    }
    
    .futures-content[b-pf8hsy51vl] {
        padding: 0 0.75rem;
    }
    
    .slider-title[b-pf8hsy51vl] {
        font-size: 0.85rem;
        padding: 0.6rem;
        min-height: 45px;
    }
}

/* Single image slider handling */
.futures-slider[data-slider="2"] .slider-image[b-pf8hsy51vl],
.futures-slider[data-slider="7"] .slider-image[b-pf8hsy51vl] {
    opacity: 1 !important;
    transition: none !important;
}

/* Animation for slider images - scale up from middle */
.slider-images[b-pf8hsy51vl] {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleUpFromMiddle-b-pf8hsy51vl 0.8s ease-out forwards;
    animation-delay: 0.26s;
}

@keyframes scaleUpFromMiddle-b-pf8hsy51vl {
    0% {
        opacity: 0.26;
        transform: scale(0.22);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/emazaya/Views/Home/Index.cshtml.rz.scp.css */
/* RESPONSIVE COLUMNS */
.columns-container[b-gdbvsl3bkg] {
    width: 100%;
    height: 100%;
}

.column[b-gdbvsl3bkg] {
    background: transparent;
    padding: 0 1.41rem;
    display: flex;
    flex-direction: column;
    gap: 1.41rem;
    overflow: hidden; 
    position: relative; 
}

/* Hide all layouts by default */
.layout-mobile[b-gdbvsl3bkg], .layout-tablet[b-gdbvsl3bkg], .layout-desktop[b-gdbvsl3bkg] {
    display: none;
}

/* mobile view */
@media (max-width: 766px) {
    .layout-mobile[b-gdbvsl3bkg] {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        padding: 0 2.2rem;
    }

    /* SWIPER STYLES FOR MOBILE */
    .layout-mobile .swiper[b-gdbvsl3bkg] {
        width: 100%;
        height: 100dvh;
        margin: 0;
        overflow: hidden;
    }

    .layout-mobile .swiper-wrapper[b-gdbvsl3bkg] {
        height: 100%;
    }

    .layout-mobile .swiper-slide[b-gdbvsl3bkg] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100% !important;
        height: auto !important;
    }

    .layout-mobile .content-card[b-gdbvsl3bkg] {
        width: 90%;
        max-width: 350px;
        height: 500px;
        margin: 0 auto;
    }
}

/* tablet view */
@media (min-width: 767px) and (max-width: 1221.41px) {
    .layout-tablet[b-gdbvsl3bkg] {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }
    
    .layout-tablet .column[b-gdbvsl3bkg] {
        flex: 0 0 25%;
        width: 25%;
    }

    /* Apply animations to content in odd columns */
    .layout-tablet .column:nth-child(odd) .scroll-content[b-gdbvsl3bkg] {
        animation: scrollUp-b-gdbvsl3bkg var(--scroll-duration, 41s) linear infinite;
    }

    /* Apply animations to content in even columns */
    .layout-tablet .column:nth-child(even) .scroll-content[b-gdbvsl3bkg] {
        animation: scrollDown-b-gdbvsl3bkg var(--scroll-duration, 41s) linear infinite;
    }
}

/* desktop view */
@media (min-width: 1222px) {
    .layout-desktop[b-gdbvsl3bkg] {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }
    
    .layout-desktop .column[b-gdbvsl3bkg] {
        flex: 0 0 16.666667%;
        width: 16.666667%;
    }

        /* Apply animations to content in odd columns */
    .layout-desktop .column:nth-child(odd) .scroll-content[b-gdbvsl3bkg] {
        animation: scrollUp-b-gdbvsl3bkg var(--scroll-duration, 41s) linear infinite;
    }

    /* Apply animations to content in even columns */
    .layout-desktop .column:nth-child(even) .scroll-content[b-gdbvsl3bkg] {
        animation: scrollDown-b-gdbvsl3bkg var(--scroll-duration, 41s) linear infinite;
    }

}

/* desktop styling - default */
.columns-container.desktop .column[b-gdbvsl3bkg] {
    flex-basis: 16.666%;
}

/* Continuous scroll content setup */
.scroll-content[b-gdbvsl3bkg] {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: calc(100% - (1.41rem*2)); /* minus padding of column */
    height: auto; /* Let height be determined by content */
    top: 0;
}

/* Animations for continuous flow */
@keyframes scrollUp-b-gdbvsl3bkg {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%); 
    }
}

@keyframes scrollDown-b-gdbvsl3bkg {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* CONTENT CARDS */
.content-card[b-gdbvsl3bkg] {
    flex-shrink: 0;
    height: 366px;
    border-radius: 1.39rem;
    padding: 0.89rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.41rem; /* Consistent spacing between cards */
    box-sizing: border-box;
}

.content-card h3[b-gdbvsl3bkg] {
    margin: 0;
    width: 100%;
    max-height: 89px;
    font-size: 1.41rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-card img[b-gdbvsl3bkg] {
    width: 100%;
    height: auto;
    max-height: calc(100% - 89px);
    border-radius: 0.5rem;
    object-fit: cover;
    clip-path: ellipse(126% 98% at 22% 100%);
}

/* Pause animation when hovering over any content card */
.scroll-content:hover[b-gdbvsl3bkg] {
    animation-play-state: paused !important;
}

/* Sibling selectors when hovering content-card */
/* Target all siblings by targeting all content-cards in the parent when one is hovered */
.scroll-content:hover .content-card[b-gdbvsl3bkg] {
    /* Default style for all cards when any card in the parent is hovered */
    opacity: 0.41;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

/* Reset styles for the specific hovered card */
.content-card:hover[b-gdbvsl3bkg] {
    /* Style for the hovered card itself */
    opacity: 1!important;
    transform: scale(1)!important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.26);
}


/* _content/emazaya/Views/NewsletterSubs/Index.cshtml.rz.scp.css */
.login-container[b-pz4yzdk0db]{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    width: fit-content;
    height: fit-content;
}

.login-container h2[b-pz4yzdk0db], .login-container form label[b-pz4yzdk0db], .login-container form input[b-pz4yzdk0db], .login-container form button[b-pz4yzdk0db]{
    color: var(--primary-color);
    text-align: center;
}


.login-container form input[b-pz4yzdk0db]{
    width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
}

.login-container form button[b-pz4yzdk0db]{
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
/* _content/emazaya/Views/NewsletterSubs/Subscribers.cshtml.rz.scp.css */
.subscribers-container[b-kc3n7yptsw]{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to flex-start */
    align-items: center;
    width: fit-content;
    height: fit-content;
    max-width: 100%;
    max-height: 66%;
    overflow: auto;
    background: transparent;
    border-radius: 5px;
}

.subscribers-container h2[b-kc3n7yptsw] {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.subscribers-container #copy-emails-btn[b-kc3n7yptsw] {
    background: transparent;
    color: var(--primary-color);
    border: var(--primary-color) solid 2px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.subscribers-container #copy-emails-btn:hover[b-kc3n7yptsw] {
    background: var(--primary-color);
    color: white;
}

.subscribers-container table[b-kc3n7yptsw] {
    width: 100%;
    border-collapse: collapse;
}

.subscribers-container table th[b-kc3n7yptsw],
.subscribers-container table td[b-kc3n7yptsw] {
    padding: 0.5rem 1rem;
    border: none;
    text-align: center;
}

.subscribers-container table th[b-kc3n7yptsw] {
    background-color: var(--primary-color);
    color: white;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;

}

.subscribers-container table td[b-kc3n7yptsw],
.subscribers-container table td a[b-kc3n7yptsw] {
    color: var(--primary-color);
    text-decoration: none;
}

.subscribers-container table tr:nth-child(even)[b-kc3n7yptsw] {
    background-color: #f2f2f2;
}

.subscribers-container table tr:nth-child(odd)[b-kc3n7yptsw] {
    background-color: #acacac;
}

.subscribers-container table td[b-kc3n7yptsw] {
    background: transparent;
}

.subscribers-container table td .check-box:disabled[b-kc3n7yptsw] {
    width: 1.5rem;
    height: 1.5rem;
}
