﻿/* ============================================================
   © alefbasystem.com  
   قالب اختصاصی سامانه فروش کنسرت جزیره کیش  
   طراحی و توسعه: گروه برنامه نویسی الفباسیستم  
   تماس: 09122902832  
   ایمیل: alefbasystemteam@gmail.com  
   ============================================================ */

@import url('fonts/vazir.css');
body {
    font-family: vazir !important;
    background-color: #fff;
    color: #212529;
}
h1, h2, h3, h4, h5, h6 {
    font-family: vazir-bold !important;
    font-weight: bold !important;
}
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
}
.navbar-brand {
    color: #6f42c1 !important;
    font-weight: 700;
    font-size: 1.4rem;
}
.navbar-nav {
    margin: 0 auto;
}
.nav-icons a {
    color: #6f42c1;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}
    .nav-icons a:hover {
        color: #563099;
    }
.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    margin-right:10px;
}
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, #6f42c1, #8c6be3);
        transition: width 0.3s ease;
        border-radius: 2px;
    }
    .navbar-nav .nav-link:hover {
        color: #6f42c1;
    }
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
    .navbar-nav .nav-link.active {
        color: #6f42c1;
    }
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1055;
}
    .search-popup.active {
        opacity: 1;
        visibility: visible;
    }
.search-box {
    background: linear-gradient(135deg, #ffffff, #f8f3ff);
    border-radius: 16px;
    padding: 30px 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: scale(0.8);
    transition: transform 0.4s ease-in-out;
}
.search-popup.active .search-box {
    transform: scale(1);
}
.search-box input {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
    .search-box input:focus {
        border-color: #6f42c1;
        box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.2);
    }
.search-box button {
    background: linear-gradient(90deg, #6f42c1, #8c6be3);
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 15px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}
    .search-box button:hover {
        background: linear-gradient(90deg, #563099, #7d59d8);
    }
.close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
    .close-btn:hover {
        color: #d3b6ff;
    }
.jumbotron {
    background: linear-gradient(135deg, #6f42c1, #8c6be3);
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}
.btn-main {
    background-color: #fff;
    color: #6f42c1;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 30px;
}
    .btn-main:hover {
        background-color: #f0e6ff;
    }
.concert-section {
    padding: 2rem 0;
    background-color: #faf9fc;
}
.concert-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}
    .concert-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .concert-card img {
        height: 240px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    /*.concert-card:hover img {
        transform: scale(1.05);
    }*/
.card-body h5 {
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}
.concert-info {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 0.5rem;
}
    .concert-info i {
        color: #888;
        margin-left: 6px;
        transition: color 0.3s ease;
    }
.concert-card:hover .concert-info i {
    color: #6f42c1;
}
.concert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}
.price-tag {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.concert-card:hover .price-tag {
    color: #6f42c1;
}
.btn-ticket {
    border-radius: 50px;
    background: linear-gradient(135deg, #e6e0ff, #d0c6ff);
    color: #4a2f91;
    font-weight: 700;
    padding: 8px 26px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(111, 66, 193, 0.2);
}
    .btn-ticket:hover {
        background: linear-gradient(90deg, #6f42c1, #8c6be3);
        color: #fff;
        transform: scale(1.07);
        box-shadow: 0 4px 18px rgba(111, 66, 193, 0.4);
    }
.more-btn {
    display: block;
    margin: 3rem auto 0;
    border-radius: 50px;
    background: #6f42c1;
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    border: none;
    transition: 0.3s;
}
    .more-btn:hover {
        background: #563099;
    }
.features-section {
    padding: 4rem 0;
    background: #fff;
}
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
    .feature-box i {
        font-size: 2rem;
        color: #6f42c1;
        margin-bottom: 1rem;
    }
    .feature-box h5 {
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(111, 66, 193, 0.15);
    }
.support-section {
    background: #f8f5ff;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 5rem auto;
    text-align: center;
    max-width: 1000px;
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}
    .support-section::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 150px;
        height: 150px;
        background: rgba(111, 66, 193, 0.2);
        border-radius: 50%;
    }
    .support-section::after {
        content: "";
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        background: rgba(140, 107, 227, 0.2);
        border-radius: 50%;
    }
    .support-section h4 {
        font-weight: 700;
        color: #4a2f91;
    }
    .support-section p {
        color: #333;
    }
.contact-buttons a {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}
    .contact-buttons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
    }
.btn-call {
    background: linear-gradient(90deg, #6f42c1, #8c6be3);
    color: #fff;
    border: none;
}
.btn-email {
    border: 2px solid #6f42c1;
    color: #6f42c1;
    background: transparent;
}
    .btn-email:hover {
        background: #6f42c1;
        color: #fff;
    }
footer {
    background: #f8f9fa;
    color: #555;
    padding: 3rem 0;
    border-top: 1px solid #eaeaea;
}
    footer h6 {
        color: #6f42c1;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    footer a {
        color: #555;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
    }
        footer a:hover {
            color: #6f42c1;
        }
/* ===== فقط برای موبایل ===== */
@media (max-width: 768px) {

    .alefbasystem-logo {
        height: 50px !important;
    }
    .navbar .container {
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .navbar-brand {
        order: 3 !important;
        margin-right: 0 !important;
    }
    .navbar-toggler {
        order: 1 !important;
        margin-left: 0 !important;
    }
    .nav-icons {
        order: 2 !important;
        margin: 0 auto !important;
    }
    .navbar-collapse {
        text-align: center !important;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        margin-top: 10px;
    }
    .navbar-nav {
        flex-direction: column !important;
        align-items: center !important;
    }
        .navbar-nav .nav-item {
            margin: 6px 0 !important;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
        }
}
.alefbasystem-slider {
    margin-top:4rem;
    height: 500px !important;
}
@media (max-width: 768px) 
{
    .navbar .container {
        position: relative;
        z-index: 10;
        background: #fff;
    }
    .alefbasystem-slider {
        margin-top: 0 !important;
        height: auto !important;
    }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 5;
        background: #fff;
        border-top: 1px solid #eee;
        padding-top: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .navbar {
        position: relative;
    }
}
.otp-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.otp-input {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid #ced4da;
}

    .otp-input:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .15rem rgba(25,135,84,.25);
    }

.swal2-input {
    all: unset !important;
}


.news-hero {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.news-hero-box {
    position: relative;
    background: linear-gradient(135deg, #f6f7fb, #ffffff);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e6e8f0;
}

    .news-hero-box::before {
        content: "";
        position: absolute;
        top: -40%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(110, 66, 193, 0.15), transparent 70%);
    }

.news-hero-content {
    z-index: 2;
}

.news-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(110, 66, 193, 0.1);
    color: #6f42c1;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.news-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
}

.news-hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

.news-hero-icon {
    font-size: 5rem;
    color: rgba(110, 66, 193, 0.15);
    z-index: 1;
}

@media (max-width: 768px) {
    .news-hero-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .news-hero-icon {
        margin-top: 1.5rem;
        font-size: 4rem;
    }
}
@media (min-width: 1024px) {
    .moaiery-top {
        margin-top: 8rem !important
    }
}
.grayscale {
    filter: grayscale(100%);
}