/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Vazir', 'Shabnam', sans-serif;
    background: #fff;
    direction: rtl;
    color: #333;
}

/* Header */
.chakava-header {
    background: #FFFFFF;
    
    display: flex;
    
    
    
}

.header-container{
    
    display: flex;
    gap: 150px;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 5%;
    justify-content: space-between;
}
.main-nav li {
    position: relative;
}

.main-nav ul {
    
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    
    

}
.main-nav ul li a {
    color: #49525D;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.main-nav a {
    text-decoration: none;
    color: white;
    padding: 10px 0;
    display: inline-block;
}
.dropdown-icon {
    font-size: 12px;
    margin-right: 5px;
    transition: transform 0.3s;
}
/* Sub-menu */
.sub-menu {
    position: absolute; 
    top: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    background: #515151;
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.sub-menu li {
    width: 100%;
}

.submenua{
    color: white !important;
}
.sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #f0f0f0;
    transition: background 0.2s;
}
.sub-menu a:hover {
    background: #044263;
    color: white;
}
/* Show dropdown on hover (desktop) */
.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Rotate icon on hover */
.main-nav li:hover > a .dropdown-icon {
    transform: rotate(180deg);
}
/* Mobile touch support */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        background: #1a1a1a;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
        display: none;
    }
    .main-nav ul.active {
        display: flex;
    }
    .sub-menu {
        
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #333;
        margin-top: 5px;
        display: none;
    }
    .sub-menu.active {
        display: block;
    }
    .menu-item-has-children > a {
        pointer-events: auto;
    }
}

/*banners*/
.cont-banner{
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, #C75789 0%, #131B64 100%);
    flex-wrap: wrap;
    padding: 15px 5%;
    justify-content: space-around;
    

}

.cont-banner h2{
    color: white;
}

.cont-banner button{
    background-color: #044263;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 25px;
    padding: 15px;
    
    
}

.cont-banner button:hover{
    background-color: #4054B2;
}


.narrator-banner{
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, #66BC72 0%, #9B9B9B 100%);
    flex-wrap: wrap;
    padding: 15px 5%;
    justify-content: space-around;
    

}

.narrator-banner h2{
    color: white;
}

.narrator-banner button{
    background-color: #044263;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 25px;
    padding: 15px;
    
    
}

.narrator-banner button:hover{
    background-color: #4054B2;
}
.elementor-widget-bdt-search .bdt-search {
    display: inline-block;
}

.bdt-search .bdt-search-icon {
    /* position: absolute; */
    top: 0;
    bottom: 0;
    right: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
}
.bdt-search-default .bdt-search-input {
    height: 40px;
    padding-right: 10px;
    padding-left: 10px;
    background: #f8f8f8;
}

.lang-btn {
    background: #044263;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 500px;
}
.swiper-horizontal {
    touch-action: pan-y;
    height: 500px;
}

.heroSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: 100% !important;
    
}
.slide-1 { background-image: url('https://chakava.com/wp-content/uploads/2023/12/background2.webp'); }
.slide-2 { background-image: url('https://chakava.com/wp-content/uploads/2023/12/microphone.webp'); }
.slide-3 { background-image: url('https://chakava.com/wp-content/uploads/2023/12/background1-1.webp'); }
.slide-content h2 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.slide-content p {
    font-size: 1.5rem;
}

/* Services Flip Boxes */
.services {
    padding: 60px 5%;
    background: #f9f9f9;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 15px;
}
.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}
.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.flip-box-front {
    background: linear-gradient(145deg, #fff, #f0f0f0);
}
.flip-box-back {
    background: #044263;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.flip-box-back .btn {
    background: #cb0200;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}

/* Audio Player Wave */
.artists-slider {
    padding: 20px 5%;
}
.artist-card {
    background: #0C0B0E;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
}
.artist-image img {
    width: 100%;
    border-radius: 10px;
}
.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}
.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}
.wave-bars {
    flex: 1;
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 30px;
}
.wave-bars span {
    flex: 1;
    background: #ff5a6e;
    height: 5px;
    transition: 0.2s;
}
.playing .wave-bars span {
    animation: wave 0.8s infinite alternate;
}
@keyframes wave {
    0% { height: 5px; }
    100% { height: 25px; }
}
.artist-links {
    display: flex;
    gap: 10px;
}
.bio-btn, .order-btn {
    flex: 1;
    padding: 8px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-size: 14px;
}
.bio-btn { background: #cb0200; }
.order-btn { background: #044263; }

/* Language Icons */
.lang-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.lang-icons a img {
    width: 80px;
    transition: transform 0.3s;
}
.lang-icons a:hover img {
    transform: scale(1.1);
}

/* Blog Carousel */
.blog-carousel {
    padding: 40px 5%;
    background: #f5f5f5;
}
.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}
.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-post h4 {
    padding: 15px;
}
.read-more {
    display: inline-block;
    margin-bottom: 15px;
    color: #cb0200;
    text-decoration: none;
}

/* Collage Banner */
.collage-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
    margin: 40px 0;
}
.collage-container {
    position: relative;
    width: 120%;
    height: 100%;
    display: flex;
}
.slice {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: all 0.4s;
}
.slice1 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/first-scaled.webp"); }
.slice2 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/third-scaled.webp"); }
.slice3 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/second.webp"); }
.slice4 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/fourth-scaled.webp"); }
.slice5 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/sixth-scaled.webp"); }
.slice6 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/seventh-scaled.webp"); }
.slice7 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/eigth-scaled.webp"); }
.slice8 { background-image: url("https://chakava.studio/wp-content/uploads/2025/04/fith-scaled.webp"); }
.collage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px 30px;
    border-radius: 40px;
    white-space: nowrap;
}

/* Footer */
.chakava-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 5%;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}
.social-icons a {
    color: white;
    font-size: 24px;
    margin-left: 15px;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero-slider { height: 300px; }
    .slide-content h2 { font-size: 1.8rem; }
    .collage-text { white-space: normal; font-size: 14px; padding: 10px; }
}