/* Vendor Recruitment Page Styles */

/* ===== Hero Banner ===== */
.vendor-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vendor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.vendor-hero .en-title {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
}

.vendor-hero .jp-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vendor-hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 2;
    margin-top: 15px;
}

.vendor-hero-event {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.vendor-hero-emoji {
    font-size: 1.6rem;
    display: block;
    margin-top: 10px;
}

/* ===== Section Layout ===== */
.vendor-section {
    padding: 80px 0;
}

.vendor-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.vendor-section .section-header {
    margin-bottom: 40px;
}

.vendor-section .section-subtitle {
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 10px;
    font-size: 0.95rem;
}

.vendor-content {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Event Info Cards ===== */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.event-info-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: transform 0.3s var(--easing), border-color 0.3s ease;
}

.event-info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.2);
}

.event-info-card .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.event-info-card h4 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.event-info-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.event-info-card .date-item {
    margin-bottom: 4px;
}

.event-info-card .time-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}

/* ===== Genre Tags ===== */
.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 25px 0;
}

.genre-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.9rem;
    background: rgba(251, 191, 36, 0.05);
    transition: all 0.3s ease;
}

.genre-tag:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.genre-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ===== Fee Cards ===== */
.fee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.fee-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--easing);
}

.fee-card:hover {
    transform: translateY(-5px);
}

.fee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.fee-card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.fee-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.fee-tier {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-card-border);
}

.fee-tier:last-child {
    border-bottom: none;
}

.fee-tier .tier-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.fee-tier .tier-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.fee-tier .tier-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.fee-card .fee-note {
    margin-top: 15px;
    padding: 10px 14px;
    background: rgba(249, 115, 22, 0.08);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.fee-card .fee-includes {
    margin-top: 15px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== Scale / Expected Revenue ===== */
.scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.scale-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s var(--easing);
}

.scale-card:hover {
    transform: translateY(-3px);
}

.scale-card .scale-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.scale-card .scale-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.scale-card .scale-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.scale-card .scale-value small {
    font-size: 1rem;
    font-weight: 400;
}

.scale-card .scale-detail {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== Promotion Methods ===== */
.promo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-2px);
}

.promo-item .promo-icon {
    font-size: 1.3rem;
}

.promo-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== Important Notices / Rules ===== */
.notice-cards {
    display: grid;
    gap: 20px;
}

.notice-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 25px 30px;
    transition: transform 0.3s var(--easing);
}

.notice-card:hover {
    transform: translateY(-3px);
}

.notice-card h4 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.notice-card .notice-table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

.notice-card .notice-table th,
.notice-card .notice-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-card-border);
    font-size: 0.9rem;
}

.notice-card .notice-table th {
    color: var(--color-text-muted);
    font-weight: 500;
    width: 45%;
}

.notice-card .notice-table td {
    color: var(--color-text);
    font-weight: 600;
}

.notice-card .notice-table tr:last-child th,
.notice-card .notice-table tr:last-child td {
    border-bottom: none;
}

.notice-warning {
    background: rgba(249, 115, 22, 0.06) !important;
    border-color: rgba(249, 115, 22, 0.2) !important;
}

/* ===== Application Section ===== */
.apply-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #111827 100%);
}

.apply-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-card-bg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apply-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-accent));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.apply-box h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.apply-box .apply-desc {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.apply-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.apply-email-link:hover {
    color: var(--color-primary);
    opacity: 1;
}

.apply-subject {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.apply-items {
    text-align: left;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--color-card-border);
}

.apply-items h4 {
    font-size: 1.05rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-align: center;
}

.apply-items ol {
    counter-reset: apply-counter;
    padding: 0;
    list-style: none;
}

.apply-items ol li {
    counter-increment: apply-counter;
    position: relative;
    padding-left: 35px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.apply-items ol li::before {
    content: '①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Use individual numbering */
.apply-items ol li:nth-child(1)::before {
    content: '①';
}

.apply-items ol li:nth-child(2)::before {
    content: '②';
}

.apply-items ol li:nth-child(3)::before {
    content: '③';
}

.apply-items ol li:nth-child(4)::before {
    content: '④';
}

.apply-items ol li:nth-child(5)::before {
    content: '⑤';
}

.apply-items ol li:nth-child(6)::before {
    content: '⑥';
}

.apply-items ol li:nth-child(7)::before {
    content: '⑦';
}

.apply-items ol li:nth-child(8)::before {
    content: '⑧';
}

.apply-items ol li:nth-child(9)::before {
    content: '⑨';
}

.apply-items ol li:nth-child(10)::before {
    content: '⑩';
}

.apply-items ol li:nth-child(11)::before {
    content: '⑪';
}

.apply-items ol li:nth-child(12)::before {
    content: '⑫';
}

.apply-items ol li:nth-child(13)::before {
    content: '⑬';
}

.apply-items ol li:nth-child(14)::before {
    content: '⑭';
}

.apply-notes {
    margin-top: 20px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* ===== CTA Button ===== */
.btn-apply {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
    margin-top: 30px;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(251, 191, 36, 0.4);
    opacity: 1;
}

/* ===== Back Link ===== */
.vendor-back {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .vendor-hero {
        padding: 120px 0 60px;
    }

    .vendor-hero .jp-title {
        font-size: 1.8rem;
    }

    .fee-cards {
        grid-template-columns: 1fr;
    }

    .apply-box {
        padding: 35px 25px;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .scale-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .vendor-hero .jp-title {
        font-size: 1.5rem;
    }

    .scale-grid {
        grid-template-columns: 1fr;
    }

    .genre-tag {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .apply-box {
        padding: 30px 20px;
    }
}