﻿/*.brand-name {
    color: #4CAF50;
    font-family: 'Vazir', 'IranSans', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    background: linear-gradient(90deg, #A3E635, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    animation: brandScale 0.8s ease forwards;
}*/
.brand-name {
    color: #D4AF37;
    font-family: 'Vazir', 'IranSans', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFDC6B, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0px 0px 10px rgba(212, 175, 55, 0.3);
}
.btn-gold {
    background: linear-gradient(135deg, #FFDC6B, #D4AF37);
    color: #3D2B1F;
    border: none;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    }

.btn-outline-luxury {
    border: 2px solid #D4AF37;
    color: #5B3B8C;
    font-weight: 600;
    background: transparent;
    transition: all 0.2s;
}

.btn-outline-luxury:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    color: #3D2B1F;
}



.blur-gold-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #FFDC6B;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    top: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.blur-purple-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #B794F4;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.25;
    bottom: -100px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

@media print {
    .page-break {
        page-break-before: always;
    }

    .col-print-6 {
        flex: 0 0 auto;
        width: 50%;
    }

}


@keyframes brandScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* دایره‌ها ابتدا مخفی هستند */
.banner-effect1, .banner-effect2 {
    opacity: 0;
    transform: scale(0.5);
}

/* دایره سمت چپ (بنفش) */
.banner-effect1 {
    animation: moveLeft 1s ease forwards;
    animation-delay: 0.5s;
}

/* دایره سمت راست (آبی) */
.banner-effect2 {
    animation: moveRight 1s ease forwards;
    animation-delay: 0.8s;
}

@keyframes moveLeft {
    0% {
        transform: translateX(-200px) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 0.5;
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(200px) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 0.5;
    }
}



/* استایل‌های سفارشی برای افکت‌ها */
.hover-effect {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .hover-effect:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.15) !important;
    }


/* واکنش‌گرایی برای موبایل */
@media (max-width: 768px) {
    .card-img-top {
        height: 220px !important;
    }

    .display-5 {
        font-size: 2rem;
    }
}








@media (max-width: 768px) {
    #responsiveImage {
        height: 50vh;
        width: 100%;
        object-fit: cover;
        object-position: left center;
    }
}

@media (min-width: 769px) {
    #responsiveImage {
        max-width: 100%;
        height: auto;
    }
}