/* فونت اصلی پروژه */
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX/IRANYekanX-Regular.woff2') format('woff2');
    font-weight: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX/IRANYekanX-Medium.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX/IRANYekanX-Bold.woff2') format('woff2');
    font-weight: bold;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body, h1, h2, h3, p, a, button, span { font-family: 'IRANYekanX', sans-serif; }

/* صفحه اصلی */
body { background: #f4f4f4; }
.header-text { padding: 20px; text-align: center; }
.header-text h1 { font-size: 24px; font-weight: bold; margin-bottom: 5px; }
.header-text p { font-size: 14px; margin-bottom: 10px; }
.header-text h2 { font-size: 18px; color: #444; font-weight: 500; }

.main-button-section { padding: 20px; }
.main-button {
    background: #f7c600; color: #000; padding: 15px; border-radius: 8px;
    font-size: 18px; font-weight: bold; text-decoration: none; box-shadow: 0 3px 8px rgba(0,0,0,.15);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.main-button i { font-size: 22px; }

.section-title { font-size: 20px; padding: 10px 20px; font-weight: 500; }
.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    padding: 20px 18px;
    padding-bottom: 90px;   /* ← این خط رو اضافه کن (یا 100px) */
}
.grid-item {
    background: #2f3336; color: #fff; padding: 20px 5px; border-radius: 10px;
    text-align: center; font-size: 15px; font-weight: 500; text-decoration: none;
    min-height: 90px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 10px;
}
.icon-yellow { color: #f7c600; font-size: 26px; }
.grid-item span { font-size: 14px; line-height: 1.3; }

.bottom-menu {
    position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
    display: flex; justify-content: space-around; border-top: 1px solid #ccc;
    padding: 8px 0; z-index: 10;
}
.menu-item {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;     /* آیکون بالای متن */
    align-items: center;
}
.menu-item i { font-size: 18px; margin-bottom: 3px; }
.menu-item.active { color: #000; font-weight: bold; }

/* موبایل */
@media (max-width: 600px) {
    .grid { grid-template-columns: repeat(2,1fr); }
    .grid-item { min-height: 100px; padding: 15px 5px; }
    .icon-yellow { font-size: 24px; }
    .grid-item span { font-size: 13.5px; }
}

/* ====================== بج الکترونیکی میهمان ====================== */
.badge-container {
    width: 100%; max-width: 420px; margin: 0 auto; background: linear-gradient(135deg,#1e1e1e,#2d2d2d);
    border: 2px solid #f7c600; border-radius: 20px; overflow: hidden; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.6); color: #fff;
}

.badge-header {
    background: #f7c600; color: #000; padding: 20px 24px 16px 70px;
    text-align: right; font-weight: bold; font-size: 19px; position: relative;
}

.badge-body { padding: 30px 25px; text-align: center; }

.guest-name { font-size: 32px; font-weight: bold; color: #f7c600; margin-bottom: 8px; line-height: 1.2; }
.guest-title { font-size: 20px; font-weight: 500; color: #ccc; margin-bottom: 20px; }

.guest-company {
    font-size: 18px; color: #f7c600; background: rgba(247,198,0,.15);
    padding: 12px; border-radius: 12px; margin-bottom: 25px; font-weight: 500;
}
.guest-company small { display: block; font-size: 14px; color: #aaa; margin-top: 6px; }

.interests-title { font-size: 16px; color: #aaa; margin-bottom: 12px; font-weight: 500; }
.interest-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag { background: #333; color: #f7c600; padding: 8px 16px; border-radius: 30px; font-size: 14px; border: 1px solid #f7c600; }

/* دکمه ارسال کاتالوگ — سبز + واتساپ سمت راست */
.send-catalog-btn {
    background: linear-gradient(135deg,#00c853,#00b248); color: #fff;
    font-weight: bold; font-family: 'IRANYekanX', sans-serif; letter-spacing: .5px;
    font-size: 18px; padding: 16px 32px; border: none; border-radius: 50px;
    width: 80%; margin: 0 auto; display: flex; align-items: center;
    justify-content: center; gap: 10px; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,200,83,.5); transition: all .3s ease;
}
.send-catalog-btn i { font-size: 22px; order: -1; }
.send-catalog-btn:hover {
    background: linear-gradient(135deg,#00e65b,#00c853);
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,200,83,.7);
}

/* لوگوی رویداد */
.event-logo {
    position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.75);
    padding: 10px 12px; border-radius: 16px; backdrop-filter: blur(8px);
    border: 2px solid rgba(247,198,0,.6); box-shadow: 0 4px 15px rgba(0,0,0,.5); z-index: 10;
}
.event-logo img { height: 56px; width: auto; max-width: 135px; display: block; }

/* ریسپانسیو بج */
@media (max-width: 480px) {
    .guest-name { font-size: 28px; }
    .guest-title { font-size: 18px; }
    .send-catalog-btn { font-size: 17px; padding: 14px 30px; }
}

/* بهبود فاصله‌ها داخل بج الکترونیکی — نسخه نهایی */
.badge-body {
    padding: 40px 28px 35px;   /* فضای داخلی بیشتر */
}

.guest-name { margin-bottom: 12px; }
.guest-title { margin-bottom: 28px; }

.guest-company { margin-bottom: 32px; }

.interests {
    margin-bottom: 38px;       /* فاصله بیشتر قبل از دکمه */
}

.interests-title { margin-bottom: 16px; }

.send-catalog-btn {
    padding: 18px 36px !important;   /* دکمه کمی بزرگ‌تر و راحت‌تر */
    font-size: 19px !important;
}

/* فاصله بهتر دکمه‌های گرید — صفحه اصلی */
.grid {
    gap: 18px;          /* قبلاً 12px بود → حالا فاصله بیشتر و شیک‌تر */
    padding: 20px 18px; /* کمی فاصله از لبه‌های صفحه */
}

.grid-item {
    min-height: 105px;  /* کمی بلندتر که متن‌ها راحت‌تر جا بشن */
    padding: 18px 8px;  /* فاصله داخلی بهتر */
    gap: 12px;          /* فاصله بین آیکون و متن */
}

/* افکت متحرک Fade-In و Zoom برای بج */
.badge-container {
    opacity: 0;
    transform: scale(0.92); /* کمی کوچیک‌تر در ابتدا */
    animation: fadeInZoom 0.8s ease-out forwards; /* انیمیشن نرم ۰.۸ ثانیه */
}

.header {
    background: #000;
    padding: 20px 0 10px;
    text-align: center;
}

.header-logo img {
    height: 100px;           /* ارتفاع ثابت و شیک */
    width: auto;
    max-width: 90%;
    margin-bottom: 12px;
}

.header-text h1 {
    font-size: 26px;
    color: #f7c600;
    margin-bottom: 6px;
}

.header-text p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.header-text h2 {
    font-size: 18px;
    color: #ccc;
    font-weight: 500;
}
/* برچسب نوع میهمان — بالای بخش شرکت */
.guest-type-label {
    text-align: center;
    margin: 20px 0 25px;
}

.type-badge {
    display: inline-block;
    padding: 7px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    box-shadow: 0 5px 18px rgba(0,0,0,0.45);
    border: 2.5px solid;
}

/* رنگ‌ها دقیقاً طبق خواسته تو */
.type-badge.speaker { background: linear-gradient(135deg,#1e40af,#3b82f6); color:#fff; border-color:#60a5fa; }
.type-badge.vip     { background: linear-gradient(135deg,#f97316,#fb923c); color:#fff; border-color:#fdba74; }
.type-badge.cip     { background: linear-gradient(135deg,#1f2937,#374151); color:#f3f4f6; border-color:#6b7280; }
.type-badge.media   { background: linear-gradient(135deg,#f7c600,#eab308); color:#000; border-color:#f7c600; }
@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ====================== صفحه محتوا / اخبار / مطالب (content.html) ====================== */

.content-page {
    padding: 20px 20px 90px;
    background: #f4f4f4;   /* درست ← #f4f4f4 (خاکستری روشن و تمیز) */
    min-height: 100vh;
    margin-top: 12px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.12);
}

.content-header {
    background: linear-gradient(135deg, #f7c600, #e6b500);
    color: #000;
    padding: 18px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(247,198,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-body {
    padding: 18px 20px;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.article-excerpt {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: #f7c600;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #e6b500;
}

.read-more:hover i {
    transform: translateX(6px);
}

/* برای مطالبی که عکس ندارن */
.article-card.no-image .article-body {
    padding-top: 25px;
}

/* لوگوی بالای صفحه — content.html و صفحات مشابه */
.page-top-logo {
    text-align: center;
    padding: 16px 20px 8px;
    background: #000;
    width: 100%;
}

.page-top-logo img {
    height: 68px;
    width: auto;
    max-width: 90%;
    display: block;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInLogo 1.1s ease-out 0.3s forwards;
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-top-logo {
    text-align: center;
    padding: 16px 20px 8px;
    background: #000;
    width: 100%;
}

.page-top-logo img {
    height: 68px;
    width: auto;
    max-width: 90%;
    display: block;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInLogo 1.1s ease-out 0.3s forwards;
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* فاصله و شکل جدید برای محتوای اصلی */
.content-page {
    padding: 20px 20px 90px;
    background: #f4f4f4;
    min-height: 100vh;
    margin-top: 12px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.12);
}

/* هدر زرد با افکت درخشش */
.content-header {
    background: linear-gradient(135deg, #f7c600, #ffd000);
    color: #000;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: bold;
    font-size: 21px;
    margin: 0 8px 28px;
    box-shadow: 0 6px 20px rgba(247,198,0,0.35);
    position: relative;
    overflow: hidden;
}

.content-header::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* کارت‌های خبر — سایه و حرکت نرم */
.article-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 12px 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* خط زرد زیر عنوان خبر */
.article-title {
    font-size: 19px;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 10px;
}

.article-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: #f7c600;
    border-radius: 3px;
}

body { padding-bottom: 100px !important; }

.grid-item {
    background: #2f3336;
    color: #fff;
    padding: 18px 8px;
    border-radius: 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    /* افکت‌های جدید */
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* درخشش زرد هنگام هاور */
.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(247,198,0,0.4);
    background: #383d41;
}

/* خط زرد متحرک از پایین */
.grid-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f7c600;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.grid-item:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* آیکون زرد کمی بزرگ‌تر و درخشان‌تر هنگام هاور */
.grid-item .icon-yellow {
    transition: all 0.3s ease;
}

.grid-item:hover .icon-yellow {
    transform: scale(1.2);
    filter: brightness(1.3) drop-shadow(0 0 12px #f7c600);
}

/* ====================== کارت ورود VIP — card.html ====================== */
.vip-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border: 3px solid #f7c600;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(247,198,0,0.3);
    color: #fff;
    padding: 30px 25px 40px;
    text-align: center;
}

.card-logo {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);   /* ← این خط باعث می‌شه دقیقاً وسط بشه */
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}
.card-logo img {
    height: 58px;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.7));
}
/* فاصله بیشتر بین لوگو و اسم میهمان (تا دیگه نچسبد) */
.guest-name {
    font-size: 32px;
    font-weight: bold;
    color: #f7c600;
    margin: 80px 0 12px !important;   /* این عدد رو از 50px به 80px بردیم */
    line-height: 1.2;
}

.visit-time {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 20px;
}
.visit-time i { color: #f7c600; margin-left: 8px; }

.event-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}
.yellow-badge {
    background: #f7c600;
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 10px;
    font-weight: bold;
}

/* لیبل VIP — شبیه شمش طلای واقعی با برق متحرک */
.vip-label {
    margin: 6px 0 15px;
    perspective: 600px;               /* برای افکت سه‌بعدی */
}

.vip-label span {
    position: relative;
    display: inline-block;
    background: linear-gradient(145deg, #f9d71c, #ffb800, #f9d71c, #ffd44d);
    background-size: 200% 200%;
    color: #000;
    font-weight: bold;
    font-size: 46px;
    letter-spacing: 3px;
    padding: 5px 68px;
    border-radius: 10px;
    font-family: calibri;
    text-transform: uppercase;

    /* حجم سه‌بعدی شمش طلا */
    box-shadow: 
        0 4px 0 #d4af37,
        0 15px 25px rgba(0,0,0,0.6),
        inset 0 -4px 8px rgba(0,0,0,0.3),
        inset 0 6px 12px rgba(255,255,255,0.4);

    /* برق متحرک طلایی */
    overflow: hidden;
}

.vip-label span::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: goldShine 3.5s infinite;
}

@keyframes goldShine {
    0%   { left: -100%; }
    60%  { left: 100%; }
    100% { left: 100%; }
}

/* کمی چرخش سه‌بعدی هنگام هاور (اختیاری ولی خیلی لوکس) */
.vip-label span:hover {
    transform: rotateX(10deg) scale(1.05);
    transition: transform 0.4s ease;
}

.inviters {
    font-size: 15px;
    color: #aaa;
    margin: 5px 0;
    line-height: 1.5;
}
.inviters strong { color: #f7c600; }

.qr-code {
    margin: 5px auto;
    padding: 8px;
    background: #fff;
    border-radius: 20px;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.qr-code img {
    width: 120px;
    height: 120px;
    display: block;
}

.companions {
    font-size: 14px;
    color: #ccc;
    margin-top: 20px;
}
.companions span {
    background: rgba(247,198,0,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin: 4px;
    display: inline-block;
}

.qr-with-companions {
    display: flex;
    flex-direction: row-reverse;   /* ← این خط باعث می‌شه QR راست و همراهان چپ بشن */
    align-items: flex-start;
    justify-content: space-between;
    margin: 35px 20px 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.card-copyright {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    padding-top: 8px;
    padding-bottom: 4px;
    border-top: 1px solid #444;
}
.card-copyright a {
    color: #888;
    text-decoration: none;
}
.card-copyright a:hover {
    color: #f7c600;
}


/* ====================== فرم ثبت نام میهمان — register.html ====================== */
.register-form {
    background: #fff;
    padding: 28px 24px;
    border-radius: 20px;
    margin: 0 16px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
}
.required { color: #e74c3c; }

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f7c600;
    box-shadow: 0 0 0 4px rgba(247,198,0,0.2);
}

.gender-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.gender-options label {
    font-weight: normal;
    cursor: pointer;
    font-size: 16px;
}
.gender-options input[type="radio"] {
    margin-left: 8px;
}

.form-group small {
    color: #777;
    font-size: 13px;
    display: block;
    margin-top: 6px;
}

.form-buttons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}
.btn-save {
    flex: 2;
    background: #f7c600;
    color: #000;
    font-weight: bold;
    font-size: 17px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247,198,0,0.4);
    transition: all 0.3s ease;
}
.btn-save:hover {
    background: #e6b500;
    transform: translateY(-2px);
}

.btn-cancel {
    flex: 1;
    background: #eee;
    color: #555;
    font-weight: bold;
    font-size: 16px;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cancel:hover {
    background: #ddd;
    border-color: #bbb;
}
.register-form input[type="text"],
.register-form input[type="radio"] + label,
.register-form select,
.gender-options label {
    font-family: 'IRANYekanX', Tahoma, sans-serif !important;
    font-size: 16px;
}

/* مخصوص موبایل که بعضی وقتا فونت رو نمی‌گیره */
.register-form input::placeholder {
    font-family: 'IRANYekanX', Tahoma, sans-serif !important;
    color: #999;
}

/* نوع میهمان — رادیو باتن‌های شیک */
.guest-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 8px;
}
.guest-type-options label {
    background: #f7f7f7;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.guest-type-options input[type="radio"]:checked + label,
.guest-type-options label:hover {
    background: #f7c600;
    color: #000;
    border-color: #f7c600;
    font-weight: bold;
}
.guest-type-options input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* سلکت چند انتخابی — زیبا و کاربردی */
.multi-select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: #fff;
    font-size: 15.5px;
    height: auto !important;
}
.multi-select:focus {
    outline: none;
    border-color: #f7c600;
    box-shadow: 0 0 0 4px rgba(247,198,0,0.2);
}
.multi-select option {
    padding: 10px;
    font-family: 'IRANYekanX', Tahoma, sans-serif;
}
.multi-select option:checked {
    background: #f7c600;
    color: #000;
}

/* ====================== صفحه کارگاه‌ها و پنل‌ها — workshops.html ====================== */
.workshops-page { 
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); 
    min-height: 100vh; 
    padding-bottom: 90px; 
}

.workshops-header {
    background: linear-gradient(135deg, #f7c600, #ffb800);
    color: #000;
    padding: 28px 20px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(247,198,0,0.4);
    position: relative;
    overflow: hidden;
}
.workshops-header::before {
    content: ''; 
    position: absolute; 
    top: -50%; left: -50%; 
    width: 200%; height: 200%;
    background: rgba(255,255,255,0.15); 
    transform: rotate(30deg);
    animation: shine 6s infinite;
}

.workshop-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border: 2px solid #f7c600;
    border-radius: 24px;
    margin: 20px 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(247,198,0,0.25);
    transition: all 0.4s ease;
    position: relative;
}
.workshop-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(247,198,0,0.45);
}

.workshop-type {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f7c600;
    color: #000;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
}

.workshop-header {
    background: linear-gradient(135deg, #333, #555);
    padding: 50px 24px 24px;
    text-align: center;
    position: relative;
}
.workshop-title {
    font-size: 22px;
    font-weight: bold;
    color: #f7c600;
    margin-bottom: 12px;
}
.workshop-speakers {
    font-size: 16px;
    color: #fff;
    margin: 16px 0;
    line-height: 1.7;
}
.speaker-name { 
    color: #f7c600; 
    font-weight: bold; 
}
.workshop-datetime {
    background: rgba(247,198,0,0.15);
    color: #f7c600;
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    border: 1px dashed #f7c600;
}
.workshop-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: rgba(247,198,0,0.2);
}

.register-btn {
    display: block;
    background: #f7c600;
    color: #000;
    text-align: center;
    padding: 16px;
    font-weight: bold;
    font-size: 17px;
    border-radius: 0 0 22px 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.register-btn:hover {
    background: #fff;
    transform: scale(1.02);
}

/* انیمیشن درخشش هدر */
@keyframes shine { 
    0% { transform: translateX(-100%) rotate(30deg); } 
    100% { transform: translateX(100%) rotate(30deg); } 
}

/* عکس + اسم زیرش — خیلی شیک و حرفه‌ای */
.speakers-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0 16px;
    padding: 0 16px;
}

.speaker-item {
    text-align: center;
    transition: all 0.4s ease;
}

.speaker-item:hover {
    transform: translateY(-8px);
}

.speaker-photo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f7c600;
    box-shadow: 0 8px 25px rgba(247,198,0,0.45);
    transition: all 0.4s ease;
    margin-bottom: 10px;
}

.speaker-item:hover .speaker-photo {
    transform: scale(1.15);
    border-color: #fff;
    box-shadow: 0 15px 35px rgba(247,198,0,0.65);
}

.speaker-name {
    color: #f7c600 !important;
    font-weight: bold;
    font-size: 15px;
    margin: 0;
}

.speaker-title {
    color: #ccc;
    font-size: 13px;
    margin-top: 4px;
}