@import url('https://fonts.googleapis.com/css2?family=Futura+PT:wght@400;700&display=swap');

.page-container.custom-videos {
    font-family: 'Futura PT', sans-serif;
    font-weight: 300;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 20px;
}

.custom-videos .model-section {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.custom-videos .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.custom-videos .cta {
    background-color: var(--buttonBackground);
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
}

.custom-videos .cta:hover {
    background-color: var(--buttonHoverBackground);
    color: var(--buttonHoverTextColor);
}

.custom-videos a {
    color: var(--mainColor);
}

.custom-videos a:hover {
    color: #000;
}

.custom-videos .cta {
    background-color: var(--cartButtonBackground);
    color: var(--cartButtonColor);
    padding: 15px 25px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.custom-videos .cta:hover {
    background-color: var(--cartButtonHoverBackground);
    color: var(--cartButtonColor);
}

.custom-videos section.model-section ol,
.custom-videos section.model-section ul {
    margin-bottom: 0.75em; /* tighter spacing than default */
}

.custom-videos section.model-section p:last-child {
    margin-top: 0.5em; /* reduce top margin on final note */
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    background: #1a1a1a; /* soft dark background */
}

.accordion-header {
    background: #f9e5f9; /* Lavender blush */
    color: #222;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    font-size: 1rem;
    border-left: 5px solid transparent;
    border-image: linear-gradient(to bottom, var(--mainColor), #822294);
    border-image-slice: 1;
}

.accordion-header::after {
    content: '➕';
    position: absolute;
    right: 20px;
    font-size: 1.1rem;
    color: var(--mainColor);
}

.accordion-item.active .accordion-header {
    background: #f3d2f4;
}

.accordion-item.active .accordion-header::after {
    content: '➖';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #111;
    color: #ccc;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px;
}

@media (min-width: 600px) {
    .page-container.custom-videos {
        max-width: 90%;
    }
}

@media (min-width: 900px) {
    .page-container.custom-videos {
        max-width: 80%;
    }
}

@media (min-width: 1200px) {
    .page-container.custom-videos {
        max-width: 70%;
    }
}
