/* Vendor Info page - uses main styles theme variables */

.page-header {
    position: relative;
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-1.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.vendor-content {
    padding: calc(var(--spacing-unit) * 4) 0;
    background-color: var(--color-light);
}

/* Intro section - Sell at / Limited Booth / Why Vendors (Dominion-style) */
.vendor-intro-section {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.vendor-intro-section h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.vendor-intro-section > p {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 720px;
}

.vendor-cta-inline {
    text-align: center;
    margin: 2.5rem 0 2rem;
    padding: 2rem;
    background: var(--color-light);
    border-radius: 8px;
}

.vendor-cta-inline h3 {
    font-size: 1.35rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.vendor-cta-inline p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.why-vendors {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray);
}

.why-vendors h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.why-vendors ul {
    list-style: none;
    padding-left: 0;
}

.why-vendors li {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.why-vendors li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.why-vendors strong {
    color: var(--color-secondary);
}

.vendor-cta-section {
    text-align: center;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.vendor-cta-section h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.vendor-cta-section p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta {
    margin-top: 3rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.bottom-cta h2,
.bottom-cta p {
    color: var(--color-white);
}

.bottom-cta-tagline {
    font-size: 1rem !important;
    opacity: 0.95;
    margin-bottom: 1.5rem !important;
}

.bottom-cta .btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.bottom-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

/* Booth Pricing - Dominion Toy Con vendor info style */
.booth-pricing {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.booth-pricing h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.booth-pricing-intro {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Dominion-style: two equal columns, max-width 600px, centered */
.booth-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.booth-price-card {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: none;
}

.booth-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.booth-price-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

/* What's Included in a content-card style block (Dominion) */
.booth-whats-included-card {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 8px;
}

.whats-included-title {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.whats-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.whats-included-list {
    padding-left: 1.25rem;
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.whats-included-list li {
    margin-bottom: 0.35rem;
}

/* Vendor Schedule - same style as Dominion Toy Con */
.vendor-schedule {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.vendor-schedule h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.schedule-card {
    background: var(--color-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.schedule-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.schedule-date {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.schedule-time {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.application-process {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.application-process h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.application-steps {
    max-width: 560px;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
}

.application-steps li {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.application-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.application-steps li:last-child {
    margin-bottom: 0;
}

.application-steps strong {
    color: var(--color-secondary);
}

/* Venue Details - Dominion-style */
.venue-details {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.venue-details h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.venue-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.venue-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.venue-address div p {
    margin-bottom: 0.25rem;
    color: var(--color-text);
    font-size: 1rem;
}

.venue-name {
    margin-bottom: 0.35rem !important;
}

.venue-features {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.venue-features li {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.venue-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.faq-section {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-header { padding: 8rem 0 3rem; }
    .vendor-intro-section,
    .vendor-cta-section,
    .booth-pricing,
    .vendor-schedule,
    .venue-details,
    .application-process,
    .faq-section { padding: 2rem 1.5rem; }
    .vendor-cta-inline { padding: 1.5rem 1rem; }
    .booth-price-grid { grid-template-columns: 1fr; max-width: 100%; }
    .whats-included-grid { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: 1fr; }
    .venue-address { flex-direction: column; gap: 0.5rem; }
    .faq-question { font-size: 1rem; }
}
