/* ==============================================
   MAZARAT WIDGET STYLES
   ============================================== */

.mazarat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.mazarat-display {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    min-height: 400px;
}

.image-section {
    flex: 1;
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-arrow:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 15px;
}

.nav-arrow.next {
    right: 15px;
}

.content-section {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    line-height: 1.3;
}

.location-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.spiritual-significance {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4a853;
}

.spiritual-significance h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.spiritual-significance p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.mazarat-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.mazarat-tab {
    padding: 15px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    position: relative;
    overflow: hidden;
}

.mazarat-tab:hover {
    border-color: #d4a853;
    transform: translateY(-2px);
    /* box-shadow: 0 4px 15px rgba(212, 168, 83, 0.2); */
}

.mazarat-tab.active {
    background: #d4a853;
    color: white;
    border-color: #d4a853;
    /* box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3); */
}

.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #bbb;
    transform: scale(1.1);
}

.dot.active {
    background: #d4a853;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mazarat-container {
        padding: 15px;
    }
    
    .mazarat-display {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }
    
    .image-section {
        min-height: 250px;
    }
    
    .content-section {
        padding: 15px 0;
    }
    
    .location-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .location-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .spiritual-significance {
        padding: 15px;
    }
    
    .spiritual-significance h4 {
        font-size: 16px;
    }
    
    .mazarat-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    
    .mazarat-tab {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .nav-arrow.prev {
        left: 10px;
    }
    
    .nav-arrow.next {
        right: 10px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .mazarat-tabs {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mazarat-container {
        padding: 10px;
    }
    
    .mazarat-display {
        gap: 15px;
    }
    
    .image-section {
        min-height: 200px;
    }
    
    .location-title {
        font-size: 20px;
    }
    
    .mazarat-tabs {
        grid-template-columns: 1fr;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
