/* Custom styles to match the Makers conference design */

/* Brand icon styling */
.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.brand-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4A90E2, #7B68EE);
    border-radius: 50%;
    position: relative;
}

.brand-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Pricing header styling */
.pricing-header {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
    margin: 0;
    padding: 16px 0 8px 0;
}

/* Testimonial styling */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 16px;
}

.quote-icon {
    width: 32px;
    height: 32px;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-portrait {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Slider controls */
.slider-controls {
    display: flex;
    gap: 16px;
    align-items: center;
}

.left-arrow, .right-arrow {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.left-arrow:hover, .right-arrow:hover {
    opacity: 1;
}

/* Conference images */
.conference-image {
    flex: 1;
    position: relative;
}

.conference-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Down arrow for FAQ */
.down-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.accordion-item-trigger.active .down-arrow {
    transform: rotate(180deg);
}

/* Tabs styling */
.tabs-menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.tab-link {
    color: #999;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.tab-link.w--current {
    color: white;
}

.tab-link:hover {
    color: white;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .brand {
        font-size: 20px;
    }
    
    .brand-icon {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    .tabs-menu {
        gap: 16px;
    }
} 