﻿* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

#myVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 25, 116, 0.45), rgba(25, 52, 167, 0.4));
    z-index: -1;
}

.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

/* دکمه زبان */
.lang-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.lang-btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* سایه دکمه */
    width: 200px; /* دکمه کشیده */
    background-color: #086ad73f; /* رنگ پس‌زمینه دکمه */
    color: white; /* رنگ متن دکمه */
    border: 1px solid #a17900; /* بوردر دکمه */
}

/* آیکون گرد پرچم */
.flag-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* بدون پس‌زمینه */
}

    .flag-icon-circle i {
        font-size: 1.25rem;
        line-height: 1;
    }

/* افکت هاور */
.lang-btn:hover {
    background-color: #062d9a; /* رنگ پس‌زمینه هنگام هاور */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* افزایش سایه هنگام هاور */
    transform: scale(1.05); /* بزرگ شدن دکمه هنگام هاور */
    color: aliceblue;
    text-decoration: none;
}

/* دکمه انتخاب شده (هنگامی که زبان انتخاب شده است) */
.lang-btn.active {
    background-color: #086ad7; /* رنگ پس‌زمینه برای دکمه فعال */
    color: white;
}

/* حذف مرز دکمه‌ها */
.lang-btn.btn-outline-light {
    background-color: #086ad7; /* همان رنگ پس‌زمینه */
    color: white;
    border: none; /* حذف مرز */
}

.lang-btn {
    min-width: 220px;
    font-weight: 500;
}

.flag-icon-circle {
    width: 36px;
    height: 36px;
}

    .flag-icon-circle i {
        font-size: 1.5rem;
    }

.responsive-heading {
    font-size: 3rem !important;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* در حالت موبایل، مثلاً وقتی عرض کمتر از 576 پیکسل بود */
@media (max-width: 576px) {
    .responsive-heading {
        font-size: 1.8rem !important; /* تقریباً اندازه h3 */
    }
}
/* در حالت موبایل، مثلاً وقتی عرض کمتر از 335 پیکسل بود */
@media (max-width: 335px) {
    .responsive-heading {
        font-size: 1.6rem !important; /* تقریباً اندازه h3 */
    }
}
