/**
 * Testimonial Block Styles
 */

/* Highlight class for magenta text */
.highlight {
    color: #8509B9 !important;
    font-weight: 700;
}

/* Main block container - follows container-based approach */
.wildapricot-testimonial-block {
    position: relative;
    color: #FFF;
    overflow: hidden;
    padding: 3rem 1.5rem; /* Padding for content */
    margin: 0 auto;
    width: 100%;
}

/* Full width wrapper - this is our "block-background" equivalent */
.testimonial-wrapper-full {
    width: 100vw;
    padding: 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    background-color: #411A50; /* Default background color */
    box-sizing: border-box;
}

/* Regular wrapper */
.testimonial-wrapper {
    border-radius: 8px;
}

/* Image styling */
.testimonial-image {
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
}

/* Quote styling */
.testimonial-quote {
    text-align: center;
    font-family: Georama, sans-serif;
    font-size: 40.097px;
    font-style: normal;
    font-weight: 700;
    line-height: 105%;
    margin-bottom: 2rem;
    color: #FFF;
    border: none;
    padding: 0;
}

/* Responsive font sizing based on quote length */
.testimonial-quote.length-short {
    font-size: 40.097px;
}

.testimonial-quote.length-medium {
    font-size: 36px;
}

.testimonial-quote.length-long {
    font-size: 32px;
}

.testimonial-quote.length-very-long {
    font-size: 28px;
}

/* Author line styling */
.testimonial-author-line {
    text-align: center;
    font-family: Georama, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 1.5rem;
    color: #FFF;
}

/* Background color classes - removed to avoid duplication with theme-colors.css */

/* Button styles */
.testimonial-button-container {
    margin-top: 2rem;
    text-align: center;
}

.testimonial-button {
    display: inline-block;
    background-color: transparent;
    color: #411A50;
    border: 2px dashed #411A50;
    border-radius: .5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Georama', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonial-button:hover,
.testimonial-button:focus {
    background-color: #411A50;
    color: #ffffff;
    text-decoration: none;
}

.testimonial-button::after {
    content: " ⇢";
    display: inline-block;
    margin-left: 0.5rem;
}

/* Design 2 styles */
.design-design2 .testimonial-quote,
.design-design2 .testimonial-author-line {
    color: #411A50;
}

/* Mark */
.wildapricot-testimonial-block mark {
    padding: 0px;
    color: #D336C3;
    background-color: transparent;
}

/* Button styling for design2 and WordPress outline buttons */
.btn.btn-outline, .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button.is-style-outline--1 .wp-block-button__link {
    display: inline-block;
    background-color: transparent;
    color: #411A50;
    border: 2px dashed #411A50;
    padding: 0.75rem 1.5rem;
    font-family: 'Georama', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: .5rem;
}

.btn.btn-outline:hover,
.btn.btn-outline:focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline--1 .wp-block-button__link:hover,
.wp-block-button.is-style-outline--1 .wp-block-button__link:focus {
    background-color: #411A50;
    color: #ffffff;
    text-decoration: none;
}

.btn.btn-outline::after,
.wp-block-button.is-style-outline .wp-block-button__link::after,
.wp-block-button.is-style-outline--1 .wp-block-button__link::after {
    content: " ⇢";
    display: inline-block;
    margin-left: 0.5rem;
}

.testimonial-design2-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonial-design2-left {
    flex: 0 0 25%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1; /* Behind the content */
}

.testimonial-design2-content {
    flex: 0 0 70%;
    margin: 0 auto;
    text-align: center;
    z-index: 2; /* Above the background, below the tree */
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-design2-right {
    flex: 0 0 25%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -725px !important;
    margin-top: 350px;
}

.testimonial-design2-swirl {
    max-width: 100%;
    height: auto;
    opacity: 1;
    transform: rotate(-65deg);
    margin-left: -60px;
    margin-top: -130px;
}

.testimonial-design2-tree {
    max-width: 100%;
    height: auto;
}

/* Override quote and author colors for design2 */
.design-design2 .testimonial-quote {
    color: #411A50;
}

.design-design2 .testimonial-author-line {
    color: #411A50;
}

/* Highlight class for magenta text in design2 */
.design-design2 .highlight {
    color: #E94DAA !important;
    font-weight: 700;
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonial-design2-container {
        flex-direction: column;
    }
    
    .testimonial-design2-left,
    .testimonial-design2-content,
    .testimonial-design2-right {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-design2-left {
        display: none;
    }
    
    .testimonial-design2-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 32px;
    }
    
    .testimonial-quote.length-short {
        font-size: 32px;
    }
    
    .testimonial-quote.length-medium {
        font-size: 28px;
    }
    
    .testimonial-quote.length-long {
        font-size: 24px;
    }
    
    .testimonial-quote.length-very-long {
        font-size: 20px;
    }
    
    .testimonial-button {
        padding: 0.5rem 1.25rem;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .wildapricot-testimonial-block {
        padding: 2rem 1rem;
    }
    
    .testimonial-quote {
        font-size: 28px;
    }
    
    .testimonial-quote.length-short {
        font-size: 28px;
    }
    
    .testimonial-quote.length-medium {
        font-size: 24px;
    }
    
    .testimonial-quote.length-long {
        font-size: 20px;
    }
    
    .testimonial-quote.length-very-long {
        font-size: 18px;
    }
    
    .testimonial-author-line {
        font-size: 16px;
    }
    
    .testimonial-design2-right {
        display: none;
    }
}
