﻿@font-face {
    font-family: myFont;
    src: url('../../IRFont/yekan.eot');
    src: url('../../IRFont/yekan.eot?#iefix') format('embedded-opentype'), url('../../IRFont/yekan.woff') format('woff'), url('../../IRFont/yekan.ttf') format('truetype');
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'myFont', sans-serif;
    background: #fefefe;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: #0a0c12;
    color: #e0e0e0;
    padding: 10px 0;
    font-size: 0.85rem;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.top-contact i {
    margin-left: 6px;
    color: #c2a15b;
}

.top-contact a {
    color: white;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 24px;
}

.logo img {
    max-height: 55px;
}

.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    margin: auto;
}

    .nav-menu li a {
        text-decoration: none;
        color: #1f2a3e;
        padding: 8px 14px;
        border-radius: 30px;
        font-weight: 500;
        transition: 0.2s;
        display: inline-block;
    }

        .nav-menu li a:hover, .nav-menu li.active a {
            background: #f0ede8;
            color: #b8860b;
        }

.cart-icon {
    background: #1f2a3e;
    color: white !important;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 16px;
        margin-top: 16px;
        border-radius: 24px;
    }

        .nav-menu.show {
            display: flex;
        }

    .nav-toggle {
        display: block;
    }
}

/* Footer Complete */
.footer {
    background: #0e111b;
    color: #cdd1e0;
    padding: 48px 0 24px;
    margin-top: 60px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

    .footer a:hover {
        color: #e6c27a;
    }

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

    .social-icons a {
        background: #2a2f3f;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

.copyright {
    text-align: center;
    border-top: 1px solid #2a2f3f;
    padding-top: 24px;
    font-size: 0.85rem;
}

.enamad-fixed {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: white;
    border-radius: 12px;
    padding: 6px;
    width: 55px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.live-result-item:hover {
    background: #f9f6f0 !important;
}

.live-result-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 12px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* استایل اسکرول برای نتایج */
.live-results::-webkit-scrollbar {
    width: 6px;
}

.live-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.live-results::-webkit-scrollbar-thumb {
    background: #c2a15b;
    border-radius: 10px;
}

.about-hero {
    background: linear-gradient(135deg, #1a1e2b 0%, #2c2f3f 100%);
    min-height: 45vh;
    background-image: url('/images/bg_6.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.about-hero-content {
    color: black;
    position: relative;
    z-index: 2;
}

    .about-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        font-weight: 800;
    }

    .about-hero-content .breadcrumb-custom {
        background: transparent;
        padding: 0;
        font-size: 1rem;
    }

        .about-hero-content .breadcrumb-custom a {
            color: #e6c27a;
            text-decoration: none;
        }
