/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* ________ HEADER STYLING _______ */

#hhs-main-nav {
    border-radius: 10px;
    margin: 5px 10px 5px 10px;
    backdrop-filter: blur(3px) saturate(2);
    -webkit-backdrop-filter: blur(8px) brightness(1.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07);
}

/* _______ MARGIN RIGHT ON SIGNUP BTN WHEN IN HAMBURGER MENU _______ */
/* TODO - fix this, as it also adds margin when it's in the desktop header... */

.hhs-header-cta .cta-secondary, .hhs-header-cta .cta-tertiary, .hhs-header-cta .cta-primary, .hhs-header-cta .cta-four, .hhs-header-cta .cta-five {
  margin-right:10px;
}

/* _______ H2 Restyle for Page Subtitle ______ */
.page-subtitle {
    color: #222;
    font-family: Manrope; /* Ensure 'Manrope' font is loaded on your site */
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5em;
    text-decoration: none;
    text-transform: none;
}

/* _______ BUTTON OUTLINE _______ */
.cta-primary,
.cta-secondary,
.cta-four,
.cta-five,
.cta-tertiary { 
    outline: 1px solid rgb(34,34,34); 
}

/* _______ EMPHASIS CONFETTI _______ */

/* Example: <h1>Hi <span class="confetti confetti-top-left">there</span></h1> */
/* Shared styles for alignment and positioning */
/* Shared base styles */
.confetti {
    position: relative;
    display: inline-block;
}

/* Top-left decoration */
.confetti-top-left::before {
    content: '';
    position: absolute;
    width: 40px;  /* Adjust size */
    height: 40px;
    background: url('https://www.spektrix.com/hubfs/Imagery/Graphics/emphasis-confetti-blue.svg') no-repeat;
    background-size: contain; /* Ensure proper scaling */
    top: -15px;    /* Adjust positioning */
    left: -25px;   /* Adjust positioning */
}

.confetti-top-right::after {
    content: '';
    position: absolute;
    width: 40px;  /* Adjust size */
    height: 40px;
    background: url('https://www.spektrix.com/hubfs/Imagery/Graphics/emphasis-confetti-pink-top-right.svg') no-repeat;
    background-size: contain; /* Ensure proper scaling */
    top: -20px;    /* Adjust positioning */
    right: -40px;   /* Adjust positioning */
}

/* Bottom-right decoration */
.confetti-bottom-right::after {
    content: '';
    position: absolute;
    width: 100px;  /* Adjust size */
    height: 40px;
    background: url('https://www.spektrix.com/hubfs/Imagery/Graphics/flipped-emphasis-confetti-blue-bottom-right2.svg') no-repeat;
    background-size: contain; /* Ensure proper scaling */
    bottom: -15px; /* Adjust positioning */
}



/* _______ SKETCHED TEXT UNDERLINE _______ */

.sketch-underline {
    background: url(https://www.spektrix.com/hubfs/Imagery/Graphics/underline.svg) bottom left no-repeat;
    background-size: 100%;
    padding-bottom: 12px;
}

/*-------- CARD WITH GREEN SHADOW FOR A SECTION -------- */

.shadow-card-section {
    border: 1.6px solid #d9efc7; /* Green outline */
    border-radius: 20px;
    box-shadow: 10px 10px 0px 0px #d6edc1; /* Light green shadow */
    margin: 50px 25px;
    background-color: white;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* _______ CARDS WITH GREEN SHADOW _______ */

/* Container for all cards */
.shadow-card-container {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap to the next row */
    justify-content: space-between; /* Distributes space between the cards */
    align-items: stretch; /* Ensures cards are the same height */
    gap: 20px; /* Space between the cards */
    margin: 0 auto; /* Center container */
    max-width: 1200px; /* Optional: set a max width */
}

/* Individual card styling */
.shadow-card {
    border: 1.6px solid #d9efc7; /* Green outline */
    border-radius: 20px;
    box-shadow: 10px 10px 0px 0px #d6edc1; /* Light green shadow */
    padding: 30px;
    background-color: white;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1; /* Allows card to grow to equal height */
    flex-basis: calc(33.33% - 20px); /* Three cards per row, minus the gap */
    max-width: calc(33.33% - 20px); /* Ensure no cards exceed this width */
    box-sizing: border-box;
}

/* Clickable card hover effect */
.shadow-card--clickable {
    border: 1.6px solid #333; /* Black outline */
    cursor: pointer;
    position: relative; /* Added position relative to fix the arrow display */
}

.shadow-card--clickable:hover {
    transform: translateY(4px); /* Small movement on hover */
    box-shadow: 4px 4px 0px 0px #d9efc7; /* Pressed look */
}

/* Link arrow indicator - Always visible */
.shadow-card--clickable::after {
    display: block; /* Ensure it's visible */
    content: '→'; /* Add a subtle arrow or link icon */
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 2rem;
    color: #ff5b97;
    z-index: 1;
}

/* Card content styling */
.shadow-card p {
    font-family: 'Manrope', sans-serif; /* Matches your secondary font */
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
}

/* Image inside the card */
.shadow-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .shadow-card-container {
        flex-direction: column; /* Stack cards vertically on mobile */
    }

    .shadow-card {
        width: 100%; /* Full width on mobile */
        max-width: 100%; /* Override the max-width */
    }
  
    /* Mobile link arrow indicator */
    .shadow-card--clickable::after {
        font-size: 2rem;
        color: #ff5b97;
        transition: transform 0.2s;
        display: block; /* Ensure the pseudo-element is rendered */
    }
}



}